Summary
The Aroon indicator is used to identify trends and their reversals.
Syntax
public Aroon Aroon(int periods)
public Aroon Aroon(Bars bars, int periods)
Parameters
Name | Description |
---|
Example 1
[Parameter("Period")] public int Period { get; set; } private Aroon aroon; protected override void OnStart() { aroon = Indicators.Aroon(Period); } protected override void OnTick() { if (aroon.Up.LastValue < aroon.Down.LastValue) { //Do something } }