Constant Lines Areas - makes vertical constant lines and color each area created by the lines
public class ConstantLineArea : Indicator { #region Variables private double line0Value = 68.88; private double line1Value = 67.77; private double line2Value = 66.66; private double line3Value = 65.55; #endregion protected override void Initialize() { Add(new Plot(Color.DimGray, PlotStyle.Line, "Line0")); Add(new Plot(Color.DimGray, PlotStyle.Line, "Line1")); Add(new Plot(Color.DimGray, PlotStyle.Line, "Line2")); Add(new Plot(Color.DimGray, PlotStyle.Line, "Line3")); ChartOnly = true; AutoScale = false; CalculateOnBarClose = true; DisplayInDataBox = false; Overlay =...