Skip to content

Levels Property

Summary

The array of price values that are ploted as level lines

Signature

1
public double[] Levels {get; set;}

Return Value

double[]

Declaring Type

cAlgo.API.LevelsAttribute

Examples

1
2
3
4
5
6
7
 namespace cAlgo.Indicators
 {
     // two level lines will be drawn at prices 20.0 and 80.5
     [Levels(20.0, 80.5)]
     [Indicator]
     public class NewIndicator : Indicator
     //...

Last update: March 23, 2023