I've added an AddChartIndicator through Strategy Builder. The indicator is not plotting in my strategy. The indicator is on a secondary data series and inside the indicator file it does have another secondary data series to use Volumetric bars. Below is what I've:
IndicatorName1 = IndicatorName(BarsArray[1], Setting1, Setting2); IndicatorName1.Plots[0].Brush = Brushes.Blue; AddChartIndicator(IndicatorName1);
Comment