Infrastructure for
Autonomous Trading.
REST API + MCP server + A2A agent routing + HMAC-signed webhooks + live options flow + broker execution routes. Signa is the only retail trading platform built to be consumed by AI agents autonomously. The 29-Driver Action Card, ICS, Wyckoff Phase Detection, Elliott Wave, live Unusual Whales options flow, congressional trade data, and Alpaca broker execution are all accessible programmatically.
Native MCP Server
MCP (Model Context Protocol) was released by Anthropic in late 2024. Signa is one of the first commercial platforms to implement it for a non-developer consumer audience — not just as a demo, but as a production-grade signal data source.
No other retail trading platform has built an MCP server. This means Signa is the only platform where you can ask Claude, Cursor, or any AI assistant a trading question and get a response grounded in real, live institutional-grade signal data.
This is not a chatbot wrapper. The MCP server exposes the full signal engine — screener, indicators, analysis, and Action Card — as callable tools that any AI agent can invoke.
{
"mcpServers": {
"signa": {
"url": "https://getsigna.ai/mcp",
"headers": {
"Authorization":
"Bearer cmts_your_key"
}
}
}
}Full Programmatic Access
Generate named API keys from your dashboard. Set up HMAC-signed webhooks for push events. Build agents that act on institutional-grade signals automatically. Integrate with Alpaca for automated order execution.
/api/v1/signalGet current trading signal for a symbol
Authorization: Bearer cmts_your_key ?sym=BTC&tf=1day
/api/v1/indicatorsGet all 58+ indicator values
Authorization: Bearer cmts_your_key ?sym=BTC&tf=1day
/api/v1/screenerScan multiple symbols for signals
Authorization: Bearer cmts_your_key
body: { symbols: ["BTC","ETH","NVDA"] }/api/v1/analysisGet full AI CMT analysis report
Authorization: Bearer cmts_your_key ?sym=BTC&tf=1day
HMAC-Signed Push Events
Every signal event can be pushed to your endpoint in real time via HMAC-SHA256 signed webhooks. Verify the signature, parse the payload, and trigger any downstream action — including automated order execution via Alpaca.
{
"event": "signal.fired",
"sym": "BTC/USD",
"tf": "1day",
"action": "LONG",
"confidence": 94,
"entry": 67240,
"stop": 64800,
"target": 72100,
"rr": 3.2,
"high_prob": true,
"ts": 1711234567,
"sig": "sha256=abc123..."
}Options Flow, Dark Pool & Political Trades
Signa exposes Unusual Whales data through dedicated API endpoints — so your agents can query live options flow, dark pool prints, congressional trade disclosures, and market tide programmatically.
/api/options-flow/:symbolLive options flow for any symbol — sweeps, blocks, unusual flags, premium, OI, volume
/api/options-flow/dark-poolInstitutional dark pool block prints — off-exchange trades with size and level
/api/options-flow/congressUS Congressional trade disclosures — buy and sell reports from House and Senate members
/api/options-flow/tideMarket tide — put/call ratio trend over 5 and 20 sessions, flow direction signal
Alpaca Integration
Signa connects to Alpaca (paper or live) through dedicated broker API routes. Connect a user account, execute trades with Kelly Criterion position sizing, sync live positions, and retrieve positions with Signa edge recommendations — all programmatically.
Build fully autonomous trading agents that receive a Signa signal, calculate position size, execute the order, and monitor the position — without any human intervention.
POST /api/broker/execute-trade
Authorization: Bearer cmts_your_key
Content-Type: application/json
{
"symbol": "AAPL",
"direction": "LONG",
"edgeScore": 87,
"confidence": 0.87,
"entry": 178.23,
"stop": 174.80,
"target": 185.90,
"accountSize": 50000,
"maxPositionPct": 0.05
}
// Response
{
"ok": true,
"orderId": "alp_abc123",
"shares": 14,
"estimatedCost": 2495.22,
"kellyFraction": 0.028
}Get Your API Key
API access is included on all paid plans. Start with a 7-day free trial — no credit card required.