Algo trading made easy

Algo trading made easy

Visually build strategies and execute them live on brokers like Binance, IBKR, and Tradovate.

-- primitives (safety net) -----------
IF stopLoss ticks=10 transmit=false
IF takeProfit ticks=20 transmit=false
IF breakEven ticks=5 -- auto‑move stop to entry
-- L2 conditions ---------------------
TICK volume WITH minutes=1 > 8000 AND ema WITH minutes=1 > ema WITH minutes=3
THEN
order SET action=buy, quantity=2, transmit=true
-- exit on overbought ---------------
POS rsi WITH minutes=1 > 70 THEN closeOrder SET transmit=true
Enters only on a 1‑min volume burst + EMA flip; exits at RSI > 70 or TP/SL/breakeven, whichever fires first.