When i look at individual trades, i see all indicators below the charts as well as the charts. is there a setting in a building block strategy to suppress the display of all indicators contained in the strategy?
Thanks!
Thanks!
Rename
No, but you can collapse the panes by clicking the triangle on the left side.
Otherwise, you can export to C# code, and comment out each statement that starts with "Plot...".
And then save the strategy with a different name.
Otherwise, you can export to C# code, and comment out each statement that starts with "Plot...".
And then save the strategy with a different name.
CODE:
// Example _sma = SMA.Series(bars.Close, _period.AsInt); PlotIndicator(_sma); //Comment out the plot statement. _sma = SMA.Series(bars.Close, _period.AsInt); //PlotIndicator(_sma);
Thanks Cone - done & works!
Your Response
Post
Edit Post
Login is required