get_market_forecast
Read the selected market forecast at a supported horizon. Report expiry and uncertainty; never treat as a trade instruction.
Ultron multi-horizon forecast
Read the selected market forecast at a supported horizon. Report expiry and uncertainty; never treat as a trade instruction.
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/get_market_forecast
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/jsonInput 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": {
"horizonSeconds": {
"anyOf": [
{
"type": "number",
"const": 60
},
{
"type": "number",
"const": 300
},
{
"type": "number",
"const": 600
},
{
"type": "number",
"const": 1200
},
{
"type": "number",
"const": 1800
}
]
}
},
"required": [
"horizonSeconds"
],
"additionalProperties": false
}