Is it possible to set the color of an indicator from the strategy which uses it?
For example:
protected override void Initialize()
{
Add(SMA(15)); // this has default color Orange, I want to change to Blue.
}
SMA(15).PlotColors[0][0] = Color.Blue;
Thanks,
Boaz

Comment