How do you convert Results into a Pandas DataFrame? #1203
Unanswered
cirobressiani
asked this question in
Q&A
Replies: 1 comment
-
df["rsi"] = [ row.rsi for row in results ] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
How to transform the RSI results in a Pandas Dataframe instead of print it? For exemple:
calculate RSI(14)
results = indicators.get_rsi(quotes, 14)
I would like to see the 'results' variable in a dataframe format to manipulate it, instead of print it to visualize the RSI data.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions