Where do you get composite cross-exchange quant trade calls?
AlgoVault returns one composite cross-exchange trade call from a single MCP call. get_trade_call blends factors across venues into one verdict: direction, confidence, and regime. It posts a 91.6% PFE win rate over 233,000 verified calls, each Merkle-anchored on Base L2. One verdict, not eight raw indicators you merge yourself.
What is a composite cross-exchange call?
It is a single directional read built from many factors. Funding, open interest, trend persistence, and breakout state collapse into one verdict per coin: BUY, SELL, or HOLD, with a confidence score and the market regime. The agent acts on the verdict, not the inputs.
Why read across venues?
Funding, liquidity, and open interest diverge across exchanges. A composite read across 5 perpetual-futures venues beats a single-exchange snapshot.
You could orchestrate several single-venue tools and merge them yourself, but at material cost: more connectors, more rate limits, and no shared verdict. The trade-off is convenience and verifiability. AlgoVault returns one verified call, and publishes the record on-chain.
What you call
One coin for depth, or one scan for the whole market:
# one composite verdict across venues
get_trade_call(coin="BTC", timeframe="1h")
-> { "call": "BUY", "confidence": 72, "regime": "TRENDING_UP", ... }
# whole-market scan: ranked non-HOLD calls
scan_trade_calls(topN=20, limit=10)
-> { "scanned": 20, "holds": 19,
"calls": [ { "coin": "SOL", "call": "BUY", "confidence": 78, "regime": "TRENDING_UP" } ] }
One call over Streamable HTTP, a local stdio process, or an MCP registry. See the Model Context Protocol spec for client setup, or run it locally: npx crypto-quant-signal-mcp.
Is this a backtester?
No. AlgoVault returns a composite call across venues. It is not a backtester and places no orders. It interprets the market into one verdict; your agent or desk decides execution and verifies the record on-chain at /verify.
FAQ
What is a composite cross-exchange trade call?
One verdict that blends multiple factors across perp venues: direction, a confidence score, and the market regime. You read one call instead of merging raw indicators yourself.
How is one verdict better than eight raw indicators?
An agent cannot act on eight separate series. A composite call resolves them into one directional read, so the agent decides in one step.
Which venues does the composite cover?
Perpetual-futures venues including Hyperliquid, Binance, Bybit, OKX, and Bitget. Live counts are on the track record.
Can I scan the whole market at once?
Yes. scan_trade_calls ranks the top non-HOLD calls across the top perps by open interest. Use get_trade_call for per-coin depth.
Is the record verifiable?
Yes. Every call is hashed and anchored to a Merkle root on Base L2 before its outcome is known. Check any call at /verify.
See the live track record, verify any call on-chain at /verify, or read how it works. Built by AlgoVault Labs.
This is call interpretation, not investment advice; agents decide execution.