Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GH-121] Add Aroon indicator #136

Merged
merged 1 commit into from
Jun 12, 2023
Merged

[GH-121] Add Aroon indicator #136

merged 1 commit into from
Jun 12, 2023

Commits on Jun 12, 2023

  1. [GH-121] Add aroon indicator

    Add aroon oscillator.
    
     * Aroon Oscillator = Aroon Up - Aroon Down
     * Aroon Up = 100 * (n - periods since n-period high) / n
     * Aroon Down = 100 * (n - periods since n-period low) / n
     * n = window size
    
    https://www.investopedia.com/terms/a/aroonoscillator.asp
    
    The default window is 25.
    jealous committed Jun 12, 2023
    Configuration menu
    Copy the full SHA
    45a216b View commit details
    Browse the repository at this point in the history