Closed twopirllc closed 4 years ago
Hello @SoftDevDanial,
Done! Elder's Force Index's short name is called efi located under the Volume category way at the bottom of the README.
Also in the README are examples on getting help with Pandas TA
.
import pandas as pd
import pandas_ta as ta
# Help about this, 'ta', extension
help(pd.DataFrame().ta)
# Prints out a list of all indicators
pd.DataFrame().ta.indicators()
# Returns a list of indicators as a list if needed
indicator_list = pd.DataFrame().ta.indicators(as_list=True)
# Help about the log_return indicator
help(ta.log_return)
I suggest looking at the Example Notebook. The second Notebook is helpful if you want to build your custom Strategy.
Hope this helps!
Don't forget to ⭐ if you find the library useful.
Thanks, KJ
Oh wow i didn't no there was a readme for the names of the indicator. I had to click and check the names one by one before this haha.
Thank You!
No worries.
What did you have to click and check?
Thanks, KJ
Had to press each code and look at the comments to see what indicator it was haha
Yeah, that's a good way to deep dive into the indicators. But I publish the list of them all in the README.
Hi, can you also add force index?
https://www.investopedia.com/terms/f/force-index.asp#:~:text=The%20force%20index%20is%20a,book%20Trading%20for%20a%20Living.
https://www.daytrading.com/force-index
https://tlc.thinkorswim.com/center/reference/Tech-Indicators/studies-library/E-F/ForceIndex#:~:text=The%20Force%20Index%20study%20combines,negative%20values%20indicate%20the%20downtrend.
Originally posted by @SoftDevDanial in https://github.com/twopirllc/pandas-ta/issues/88#issuecomment-670031445