In my indicator, i paint a plot, then later I want to change the color of the plot that already has been painted. Somehow when I just write the plot value and with the new color by just calling the funciton, the old color still remains. Is there something I need to do to allow the color to change?
to best clarify, here is some code, that fires each tick....
if (SetupActive)
{
PlotBrushes[(int) enuPlotList.TrailingStop_Long_Inner][0] = Color_TrailingStop_TradeActive;
}
else
{
PlotBrushes[(int) enuPlotList.TrailingStop_Long_Inner][0] = Color_TrailingStop_TradeNotActive;
}
Thanks in advance for your help.

Comment