DayBreakLines
Previous Topic  Next Topic 

Definition

Plots day break lines on the indicator panel.


Property Value

This property returns true if day break lines are plotted on the indicator panel; otherwise, false. Default set to true.


Syntax

DayBreakLines


Examples

// Initialize method of a custom indicator
protected override void Initialize()
{
    Add(new Plot(Color.Orange, "SMA"));
    DayBreakLines = false; // Day break lines will not plot on the indicator panel
}



Tips
1. The indicator panel's parent chart has a similar property 'DayBreakLines' which if set to false, will override the indicator's local setting if true.