AlgoVend is a marketplace and execution engine for automated strategies on NSE, BSE and NFO. Subscribe to a strategy or build your own, put it through historical and live testing, and run it on the broker account you already have.
strategy "RSI Mean Reversion" { asset: NIFTY.NFO timeframe: 15m stop_loss: 1.5% take_profit: 3% sizing: percent_equity(5%) when RSI(NIFTY, 14) < 30 and price(NIFTY) > EMA(NIFTY, 20) { buy NIFTY.NFO }}A signal, when the conditions hold
Sized against your equity, not the author's
Checked before anything is placed
Backtest, paper and live are the same engine in three modes. That is the whole reason to trust the progression: results carry forward because the code that produced them does not change.
Replay it over history
Run against stored candles for the instruments and timeframes you care about. Fills are simulated with slippage and commission, so the result is not a curve drawn through perfect prices.
Then against live ticks, with nothing at stake
The same strategy subscribes to real market data and trades a simulated account. This is where a strategy that only worked on tidy historical bars falls over.
Only then, your broker
Connect your own account and the engine places real orders through it. Positions, funds and history stay with your broker; nothing is pooled and no capital passes through us.
Publish a strategy and set how it earns: a subscription, a fee per signal, or free. Buyers run it against their own capital and broker, so you are never holding anyone else’s money.
Publishing runs a quality check first. The strategy has to compile, resolve every instrument it references, and clear a scored review before it can be listed.
Connect the account you already trade with. Orders are placed through your broker’s own API, and you can revoke access from either side at any time.