I figured out how to adjust the Opacity and Distance
NinjaTrader.NinjaScript.DrawingTools.RegressionCha nnel myRegChan = Draw.RegressionChannel(this, tag, false, numbars, 0, UpColor, DashStyleHelper.Solid, linewidth, MidColor, DashStyleHelper.DashDot, linewidth, DnColor, DashStyleHelper.Solid, linewidth);
myRegChan.StandardDeviationUpperDistance = multiplier;
myRegChan.StandardDeviationLowerDistance = multiplier;
myRegChan.UpperChannelStroke.Opacity = colorOpacity;
myRegChan.LowerChannelStroke.Opacity = colorOpacity;
But I can't figure out how to access the mode, I want to change it to Segment.
Regards,
Danville

Comment