If you encounter the “Remove GRAPH instruction” error when launching a ProOrder strategy for live trading, it is because GRAPH commands are not allowed in live trading. These instructions are meant for backtesting visualization only and must be removed before deploying a strategy in ProOrder.
GRAPH and GRAPHONPRICE instructions are used to display variables or values on the backtest chart.GRAPH myVariable
GRAPHONPRICE myIndicator
REM GRAPH myVariable
REM GRAPHONPRICE myIndicator
GRAPH instructions, save your script and restart ProOrder.By ensuring that no GRAPH instructions are present, you can successfully transition your backtested strategy into a fully functional live ProOrder strategy.