Skip to content

IsOverlay Property

Summary

Indicates whether this instance is overlayed on the chart or plotted on a separate indicator panel

Signature

1
public bool IsOverlay {get; set;}

Return Value

bool

Declaring Type

cAlgo.API.IndicatorAttribute

Examples

1
2
 [Indicator(IsOverlay = true)] // Plots the Indicator on the chart
 public class SampleIndicator : Indicator
1
2
 [Indicator(IsOverlay = false)] // Plots the Indicator on a separate indicator panel.
 public class SampleIndicator : Indicator

Last update: March 23, 2023