Pine v6 native
Inputs, alertcondition() hooks and risk management wired in — not pseudo-code.
AI trading systems desk
Emberline turns a plain-English trading idea into compile-ready TradingView Pine Script v6 — strategies, indicators and alerts, saved to your private library.
//@version=6
strategy("Emberline EMA Cross", overlay=true,
commission_type=strategy.commission.percent, commission_value=0.04)
fast = ta.ema(close, input.int(21, "Fast EMA"))
slow = ta.ema(close, input.int(55, "Slow EMA"))
rsi = ta.rsi(close, 14)
long = ta.crossover(fast, slow) and rsi > 50
flat = ta.crossunder(fast, slow)
if long
strategy.entry("L", strategy.long)
if flat
strategy.close("L")
plot(fast, color=color.orange)
plot(slow, color=color.gray)
alertcondition(long, "Long signal")Inputs, alertcondition() hooks and risk management wired in — not pseudo-code.
Switch between backtestable strategies, overlays and screener alerts per run.
Scoped to your market and candle interval, from 1m scalps to weekly swings.
Every script is stored to your account only. Load, tweak and regenerate anytime.
Create an account and start generating in under a minute.
Open the studio