Up Property
Summary
Aroon Up
Signature
| public abstract IndicatorDataSeries Up {get;}
|
Return Value
IndicatorDataSeries
Declaring Type
cAlgo.API.Indicators.Aroon
Examples
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | //...
[Parameter("Periods", DefaultValue = 25)]
public int Periods { get; set; }
//...
private Aroon _aroon;
//...
protected override void OnStart()
{
_aroon = Indicators.Aroon(Periods);
}
protected override void OnBar()
{
Print("Current Aroon Up Value is: {0}", _aroon.Up.LastValue);
}
//...
|
Last update: July 1, 2022