Every Chartgrade setup has an entry, a stop and a target. Get those exact lines onto your own TradingView or MetaTrader chart. The fast way needs nothing installed— you just paste a snippet. There's also an optional tool that keeps the lines updated for you.
On any setup in Watch, tap Push to my chart and copy the snippet. On TradingView this is truly one paste — no download at all.
//@version=5
indicator("Chartgrade · EUR/USD", overlay=true)
entry = 1.16144
stop = 1.17022
target = 1.14388
hline(entry, "Entry", color=color.gray)
hline(stop, "Stop", color=color.red)
hline(target, "Target", color=color.green)In the Push to my chart window, download the .mq5 / .mq4 script.
MQL5 → Scripts (on MT4: MQL4 → Scripts). Drop the file in.For people who'd rather not paste each time. Install the Chart Synctool once and it reads Chartgrade's current levels for whatever FX symbol you're viewing and draws them — refreshing on its own as the call changes. It is drawing-only: no OrderSend, no trading, anywhere in it.
A few one-time steps in MetaTrader. Skip all of this if the paste method above is enough for you.
MQL5 → Experts (the Chart Sync tool is an Expert Advisor, so it goes in Experts — a different folder from the quick script above). Drop the file in.ChartgradeSync, press F7 to compile. A yellow warning is fine — you only care about red errors.https://chartgrade.appOnly needed if you want to click Push to MT5on a setup and have that pair's chart pop open with the lines. The steps above already draw levels without it. Copy your token below, then in MetaTrader: when you drag Chart Sync onto a chart, the settings window has an Inputs tab → paste it into SyncToken.(MT4 can't open charts on its own, so Push is MT5-only — on MT4 use the paste method.)
https://chartgrade.app is in the allowed list. You can see errors in MetaTrader under Toolbox → Experts.