# evaluate_market_signal

Check all volume, momentum, liquidity and optional market-cap conditions on one exact Robinhood pair. No trading.

## Check market confluence

Check all volume, momentum, liquidity and optional market-cap conditions on one exact Robinhood pair. No trading.



## Permission and calling convention

Required scope: chain:read. This tool reads data or account-owned state.

This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.



```
POST /api/tools/evaluate_market_signal
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/json
```

## Input schema

Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.



```
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "pair": {
      "type": "string",
      "pattern": "^0x(?:[0-9a-fA-F]{40}|[0-9a-fA-F]{64})$"
    },
    "conditions": {
      "type": "object",
      "properties": {
        "priceMovementDirection": {
          "default": "up",
          "type": "string",
          "enum": [
            "up",
            "down",
            "either"
          ]
        },
        "minVolume1hUsd": {
          "type": "number",
          "minimum": 0,
          "maximum": 1000000000000
        },
        "minPriceChange1hPercent": {
          "type": "number",
          "minimum": 0,
          "maximum": 100000
        },
        "minLiquidityUsd": {
          "type": "number",
          "minimum": 0,
          "maximum": 1000000000000
        },
        "minMarketCapUsd": {
          "type": "number",
          "minimum": 0,
          "maximum": 1000000000000000
        },
        "maxMarketCapUsd": {
          "type": "number",
          "minimum": 1,
          "maximum": 1000000000000000
        }
      },
      "required": [
        "priceMovementDirection",
        "minVolume1hUsd",
        "minPriceChange1hPercent",
        "minLiquidityUsd"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "pair",
    "conditions"
  ],
  "additionalProperties": false
}
```

## Continue building

Use the MCP tools/list response or /openapi.json for machine-readable discovery. For workflows and evidence boundaries, follow the appropriate guide.



[REST API](/docs/api) · [Builder quickstart](/docs/builders) · [Research workflow](/docs/trading-assistant)