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-167] Add Pretty Good Oscillator Support #168

Merged
merged 1 commit into from
Jul 8, 2023
Merged

[GH-167] Add Pretty Good Oscillator Support #168

merged 1 commit into from
Jul 8, 2023

Commits on Jul 8, 2023

  1. [GH-167] Add Pretty Good Oscillator Support

    The Pretty Good Oscillator indicator by Mark Johnson measures the
    distance of the current close from its N-day simple moving average,
    expressed in terms of an average true range over a similar period.
    
    https://library.tradingtechnologies.com/trade/chrt-ti-pretty-good-oscillator.html
    
    Formular:
    * PGO = (Close - SMA) / (EMA of TR)
    
    Example:
    * `df['pgo']` retrieves the PGO with default window 14.
    * `df['pgo_10']` retrieves the PGO with window 10.
    jealous committed Jul 8, 2023
    Configuration menu
    Copy the full SHA
    ba9d805 View commit details
    Browse the repository at this point in the history