Draw.Text(this,"T1","T1",5,dATRClose + tempATR*DT1Mult,Brushes.Red);
I Tried
Draw.Text(this,"T1","T1",5,dATRClose + tempATR*DT1Mult,PlotBrushes[3][0]);
I did not get an error but It won't color.
What I am trying to do is create a brush and get the color from PlotBrushes
///// this is where I am confused
Brush tempBrush = new Brush();
tempBrush = PlotBrushes[3][0];

Comment