Skip to content

Instantly share code, notes, and snippets.

@zachlim98
Created December 4, 2020 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zachlim98/b3eb6a23712bdf6061b84850c0ebf01d to your computer and use it in GitHub Desktop.
Save zachlim98/b3eb6a23712bdf6061b84850c0ebf01d to your computer and use it in GitHub Desktop.
df = pd.DataFrame()
for i in datalist:
temp = RSI_base(data,i)
temp = temp.rename(i)
df = pd.concat([df,temp],axis=1)
data = data[['NFLX', 'AAPL', 'GOOG']]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment