I'm getting an error when I try to compile the following:
double VOLRaw = Bollinger(RSIWAvg,2,20).Upper[0] - Bollinger(RSIWAvg,2,20).Lower[0];
SMA VOLRawAvg = SMA(VOLRaw, k_15);
I'm taking the difference between bollingerbands. Then I want to plot the "average difference" of the bollingerbands.
I'm getting hte following errors:
Indicator\AccuSignalVOLATILITY.cs Argument '1': cannot convert from 'double' to 'NinjaTrader.Data.IDataSeries' NT1503 - click for info 133 24
Indicator\AccuSignalVOLATILITY.cs Argument '1': cannot convert from 'double' to 'NinjaTrader.Data.IDataSeries' NT1503 - click for info 133 24
Help! This certainly must be simple to accomplish, but I'm transitioning from EL to C# and I'm having problems figuring it out.
Thanks much

Comment