I use this code for Convert double en ISeries
Draw.Line(this, CurrentBar + ".DeltalineUpl", false, 0, Close[0], power*-1, Close[0], Brushes.DarkGreen, DashStyleHelper.DashDotDot, 2);
//Draw.Region(this, "DeltaReg", CurrentBar, 0, Bollinger(Close[0], 14).Upper, Bollinger(Open[0], 14).Lower, null, Brushes.Blue, 50); this is code NT8 copy to link and work
Draw.Region(this, "DeltaReg", CurrentBar, 0, upperSeries, lowerSeries, null, Brushes.Blue, 50); No Draw
Draw.Region(this, CurrentBar + ".DeltalineUp", 0, 0, upperSeries, lowerSeries, null, Brushes.Blue, 50); No Draw
PlaySound(@"C:\Program Files\NinjaTrader 8\sounds\Delta_Diverg.wav");

Comment