CIRAL Studio
RapidAPI

FinancialSignals

"What signals hide in this data?"

Transforms your financial data into normalized signals: trend, momentum, risk, volatility.

Introduction

FinancialSignals is a defensive API that answers one simple question: "What signals hide in this data?". It returns a deterministic verdict — same input, same output. Always. Zero LLM, stateless, designed to integrate into your automated pipelines.

Input

Send a POST request with a JSON payload. See the example on the right.

Output

The response contains a verdict and explanatory signals. See the example on the right.

Signals

Each response includes a signals object that details the reasons for the verdict. These signals are deterministic and reproducible.

What the API does NOT do

  • Does not provide investment advice
  • Does not predict future prices
  • Does not replace fundamental analysis
Request
{
  "asset": "BTC-USD",
  "datapoints": [
    { "timestamp": "2025-01-01", "close": 42000, "volume": 1200000 },
    { "timestamp": "2025-01-02", "close": 43500, "volume": 1500000 },
    { "timestamp": "2025-01-03", "close": 42800, "volume": 1100000 }
  ]
}
Response200 OK
{
  "asset": "BTC-USD",
  "signals": {
    "trend": "bullish",
    "momentum": 0.72,
    "volatility": "medium",
    "risk_score": 0.45
  }
}

Ready to integrate FinancialSignals?

Available on RapidAPI. Integration in 5 minutes.

View on RapidAPIarrow_forward