-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add MAMA and FAMA indicators #413
Comments
Hello @arshpreetsingh, Noted. It will sometime before it will be implemented. If you would like it available sooner, please fork, edit and make a PR. Contributions are appreciated. 😎 Instructions on how to add an indicator to Pandas TA can be found in Issue #355 Creating a Custom Indicator: The Big 4. Kind Regards, |
Hello @arshpreetsingh, Alas mama (& fama) are complete; combined into mama. They are available on the development branch. $ pip install -U git+https://github.com/twopirllc/pandas-ta.git@development Please test it out when you get a chance. Kind Regards, |
how can I use this? |
@twopirllc was the code ever merged? |
Literally my last comment. |
Which version are you running? The lastest version is Github. Pip is for major releases.
Describe the solution you'd like
A clear and concise description of what you want to happen.
Mesa Adaptive moving average indicator is not available.
mama, fama = ta.mama(df['Close'], fastLimit=0.5,slowLimit=0.05)
Additional context
Available in TA-Lib
import talib
mama,fama=talib.mama(nd array, fastLimit,slowLimit)
The text was updated successfully, but these errors were encountered: