as is known, volume changes colors according to the price bar/candle/etc...Change occurs at doji.The question is,how do i have the first color the bar/volume paint in the background regardles of its next changes at doji?
Here`s the code example.I`m trying this,but the colors in the background are still changing;
if(Values[0][1] < Values[7][1] && Values[1][0] > Values[4][0] && ExtrnColor[0] == 1){
BackColor = Color.FromArgb(50, Color.Black);}
else if(Values[0][1] < Values[7][1] && Values[1][0] > Values[4][0] && ExtrnColor[0] == -1){
BackColor = Color.FromArgb(50, Color.Red);}

Comment