Features Modules Charts Get Odin FAQ
ENEN
FRFR
ESES
DEDE
ITIT
PTPT
HIHI
JAJA
ZHZH
VIVI
Launch Platform
HomePine Script
Charting

Your TradingView indicators, on your broker data

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.

Paste it. It runs.

The same source you would paste into TradingView. No conversion step, no rewriting into another language.

my-indicator.pine
//@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))

What the engine does

v5 and v6

Both language versions are supported, so scripts written years apart both run without edits.

Multi-timeframe

request.security is supported, so higher-timeframe logic works the way it does on TradingView.

Runs in a Web Worker

Compilation and recalculation happen off the main thread. Your chart keeps panning and zooming while the script recalculates.

Standard input panel

Every input() in your script becomes a normal settings field. Change a length, the chart updates in real time.

Scripts persist

Saved Pine scripts stay with your account across sessions and devices — sign in anywhere and they are there.

On top of 100+ built-ins

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.

Why run it here instead

On the account you trade

Your indicator runs on the same Rithmic or cTrader feed your orders go to — not on a separate charting provider's data.

Next to the DOM

Signal and execution in one workspace. Click-to-trade ladder beside the chart your script is drawing on.

With your firm's rules visible

Drawdown headroom and daily-loss room sit on the same screen, so the signal is never separated from the risk.

Pine Script questions

Do I need a TradingView account to run Pine Script in Odin?

No. You need the script source. Odin compiles and executes it itself, so no TradingView subscription is required to run it.

Which Pine Script versions does Odin support?

v5 and v6.

Does request.security and multi-timeframe logic work?

Yes. Multi-timeframe request.security is supported.

Can I run Pine Script strategies that place orders automatically?

Odin runs Pine Script as indicators. Order placement is manual, from the DOM, chart or order-entry module.

Is Pine Script available on the free tier?

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.

Will my MQL4 or MQL5 expert advisors run?

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.

Bring your indicators with you

Create a free account, connect your broker, and paste your first script. Pine Script unlocks with Odin Pro at $29/month.