You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
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.
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:
Example:
df['pgo']
retrieves the PGO with default window 14.df['pgo_10']
retrieves the PGO with window 10.The text was updated successfully, but these errors were encountered: