I want to plot simply the difference of High and Low from bar[0] and bar[1] and plot it above and below the bar. I was searching in helpguide but I always get compiling errors whatever I try. What ist wrong here please
pricediffHigh=(High[0]-High[1]).ToString();
pricediffLow=(Low[0]-Low[1]).ToString();
Draw.Text(this, "diffHigh" + CurrentBar, pricediffHigh, 0, High[0] + 3*TickSize);
Draw.Text(this, "diffLow" + CurrentBar, pricediffLow, 0, Low[0] - 3*TickSize);
Thank you!
Tony

Comment