I've got 50+ plots in my indicator, where most of them will be set to transparent, for a specific template
i dont the option to switch them on or off.
But my question is, when they are set to transparent like this, do they consume high amounts of recourses & what can be done to optimize this?
Thanks.
AddPlot(!Custom_Check ? Brushes.Chartreuse : Brushes.Transparent, "Plot 1");
AddPlot(!Custom_Check ? Brushes.Red : Brushes.Transparent, "Plot 2");
AddPlot(!Custom_Check ? Brushes.Orange : Brushes.Transparent,"Plot 3");
AddPlot(!Custom_Check ? Brushes.Cyan : Brushes.Transparent, "Plot 4");
AddPlot(!Custom_Check ? Brushes.Blue : Brushes.Transparent, "Plot 5");
AddPlot(!Custom_Check ? Brushes.White : Brushes.Transparent,"Plot 6");
AddPlot(!Custom_Check ? Brushes.Pink : Brushes.Transparent, "Plot 7");

Comment