santosjorge / cufflinks

Productivity Tools for Plotly + Pandas
MIT License
3.02k stars 675 forks source link

Question: Is it possible to download raw data that qf calculates #276

Open kkrzysiek11 opened 2 years ago

kkrzysiek11 commented 2 years ago

Hi, I would like to know if it's possible to download raw data that are used to plot. I've my data and want to add RSI to them doing following:

qf = cf.QuantFig(df = ge.loc["2019":])
qf.add_rsi(periods = 20, rsi_upper = 70, rsi_lower = 30)
qf.iplot(title = "GE", name = "GE")

The output is awesome, but I would like to learn RSI values on particular days.

Please advise.