Currently, I am using a range chart + AroonOscillator indicator.
My code goes like this:
myAroonOscillator = AroonOscillator(25); myAroonOscillator.Plots[0].Brush = Brushes.DarkGreen; myAroonOscillator.Plots[0].PlotStyle = PlotStyle.Bar; myAroonOscillator.Plots[0].AutoWidth = true; AddChartIndicator(myAroonOscillator);
else if (State == State.Configure)
{
AddDataSeries(Data.BarsPeriodType.Minute, 5);
}
myAroonOscillator = AroonOscillator(BarsArray[1],25); myAroonOscillator.Plots[0].Brush = Brushes.DarkGreen; myAroonOscillator.Plots[0].PlotStyle = PlotStyle.Bar; myAroonOscillator.Plots[0].AutoWidth = true; AddChartIndicator(myAroonOscillator);

Comment