- ago
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!
0
278
Solved
2 Replies

Reply

Bookmark

Sort
Cone8
 ( 23.52% )
- ago
#1
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.

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);
0
Best Answer
- ago
#2
Thanks Cone - done & works!
1

Reply

Bookmark

Sort