v5 and v6
Both language versions are supported, so scripts written years apart both run without edits.
Odin runs an in-house Pine Script v5 and v6 engine. Paste an indicator you already use, and it executes natively against the account you actually trade — Rithmic, dxFeed, TFeed, cTrader, MT4 or MT5. No TradingView account is required to execute it.
The same source you would paste into TradingView. No conversion step, no rewriting into another language.
//@version=5 indicator("Session VWAP + Bands", overlay = true) len = input.int(20, "Length") mult = input.float(2.0, "Band multiplier") vw = ta.vwap(hlc3) dev = mult * ta.stdev(close, len) plot(vw, color = color.orange, linewidth = 2) plot(vw + dev, color = color.new(color.gray, 40)) plot(vw - dev, color = color.new(color.gray, 40))
Both language versions are supported, so scripts written years apart both run without edits.
request.security is supported, so higher-timeframe logic works the way it does on TradingView.
Compilation and recalculation happen off the main thread. Your chart keeps panning and zooming while the script recalculates.
Every input() in your script becomes a normal settings field. Change a length, the chart updates in real time.
Saved Pine scripts stay with your account across sessions and devices — sign in anywhere and they are there.
Your custom scripts sit alongside 100+ built-in indicators and 70+ drawing tools on the same chart.
Pine Script is a TradingView language. Odin implements a compatible engine so scripts written for TradingView run here; it is not affiliated with or endorsed by TradingView, Inc. Very new or undocumented built-ins may not be covered — if a script does not compile, the editor tells you which line it stopped on.
Your indicator runs on the same Rithmic or cTrader feed your orders go to — not on a separate charting provider's data.
Signal and execution in one workspace. Click-to-trade ladder beside the chart your script is drawing on.
Drawdown headroom and daily-loss room sit on the same screen, so the signal is never separated from the risk.
No. You need the script source. Odin compiles and executes it itself, so no TradingView subscription is required to run it.
v5 and v6.
Yes. Multi-timeframe request.security is supported.
Odin runs Pine Script as indicators. Order placement is manual, from the DOM, chart or order-entry module.
No. Pine Script v5/v6 is an Odin Pro feature, $29/month or $261/year. It is included at no extra cost for TFeed customers.
No. Odin runs Pine Script, not MQL. If you trade MT4 or MT5 accounts you can still connect them and use Pine Script indicators on those charts.
Create a free account, connect your broker, and paste your first script. Pine Script unlocks with Odin Pro at $29/month.