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-158] Gaussian Fisher Transform Price Reversals #159

Merged
merged 1 commit into from
Jun 24, 2023
Merged

Commits on Jun 24, 2023

  1. [GH-158] Gaussian Fisher Transform Price Reversals

    The Gaussian Fisher Transform Price Reversals indicator, dubbed
    FTR for short, is a stat based price reversal detection indicator
    inspired by and based on the work of the electrical engineer
    now private trader John F. Ehlers.
    
    https://www.tradingview.com/script/ajZT2tZo-Gaussian-Fisher-Transform-Price-Reversals-FTR/
    
    Implementation reference:
    
    https://github.com/twopirllc/pandas-ta/blob/084dbe1c4b76082f383fa3029270ea9ac35e4dc7/pandas_ta/momentum/fisher.py#L9
    
    Formular:
    * Fisher Transform = 0.5 * ln((1 + X) / (1 - X))
    * X is a series whose values are between -1 to 1
    
    Examples:
    * `df['ftr']` returns the FTR with window 9
    * `df['ftr_20']` returns the FTR with window 20
    jealous committed Jun 24, 2023
    Configuration menu
    Copy the full SHA
    a6df977 View commit details
    Browse the repository at this point in the history