Most "algo" platforms stop at signal generation. TradeWise.AI handles everything from the raw WebSocket tick to the postback confirming your SL exit was filled — with the persistence and observability you'd expect from a real production system.
Builds 15-minute OHLC candles directly from the Kite WebSocket tick stream. No drift, no historical-API reconciliation race.
tick → memory → DBDetects whether the index is trending, ranging, or chopping, and only lets the matching strategy take the trade. The AI's job here is restraint — stopping the wrong signals from firing, not finding more of them.
AI · regime classifierCancel SL → wait for the CANCELLED postback → place SELL MARKET. No order races, no naked positions. Every state transition is HMAC-verified.
postback-drivenEvery strategy run, signal, and trade outcome lands in Postgres with timestamps, source provenance, and full candle context — debuggable months later.
JDBI3 + PostgreSQL 16Order reconciler (5s polling), tick-gap monitor for emergency exits, and a master WS health gate that blocks new entries if the feed is degraded.
defence in depthStatic-IP registered (effective Apr 2026), per-user broker authorization, no shared credentials. Built for the 2026 algo-trading framework from day one.
Elastic IP · ap-south-1Both strategies run on NIFTY 50 with 15-minute candles, fire at boundary + 2s, and place trades on the nearest qualifying option strike in the configured premium band.
A short-horizon model that activates when intraday price action exhibits a specific reversal microstructure. Sized into option legs with capped, premium-only downside.
Identifies sequences where directional momentum has overextended relative to its expected range, and trades the reversion through an options leg with predefined risk.
Every step is observable, every artifact persisted. When something goes wrong six months from now, the audit trail is in Postgres — not in Slack screenshots.
Kite WebSocket delivers exchange-stamped ticks at ~100ms cadence.
In-memory 15m OHLC builds on the WS thread. Synchronized, microseconds.
Closed candle hits Postgres with source provenance (WEBSOCKET / PARTIAL / BACKFILL).
Strategy runs at boundary + 2s, reads from the candle store, emits a signal.
Strike selection, BUY, SL armed, postback-tracked all the way to TARGET_HIT or SL_HIT.
Log in to access the live dashboard, see active signals, and review every strategy run.