Files
jens 72c17e5d05 Initial import
git-svn-id: http://moon:8086/svn/projects/Stock@291 fda53097-d464-4ada-af97-ba876c37ca34
2019-12-08 17:48:30 +00:00

41 lines
1.1 KiB
Python

'''
On your terminal run:
pip install alpha_vantage
This also uses the pandas dataframe, and matplotlib, commonly used python packages
pip install pandas
pip install matplotlib
For the develop version run:
pip install git+https://github.com/RomelTorres/alpha_vantage.git@develop
'''
from alpha_vantage.timeseries import TimeSeries
from alpha_vantage.techindicators import TechIndicators
from matplotlib.pyplot import figure
import matplotlib.pyplot as plt
# Your key here
key = '0UO7Z2MVZ2YSQSVE'
# Chose your output format, or default to JSON (python dict)
ts = TimeSeries(key, output_format='pandas')
ti = TechIndicators(key, output_format='pandas')
# Get the data, returns a tuple
# aapl_data is a pandas dataframe, aapl_meta_data is a dict
aapl_data, aapl_meta_data = ts.get_daily(symbol='AAPL')
# aapl_sma is a dict, aapl_meta_sma also a dict
aapl_sma, aapl_meta_sma = ti.get_sma(symbol='AAPL')
aapl_data['4. close'].to_csv("aapl.csv")
# Visualization
figure(num=None, figsize=(15, 6), dpi=80, facecolor='w', edgecolor='k')
aapl_data['4. close'].plot()
#aapl_sma['SMA'].plot()
plt.tight_layout()
plt.grid()
plt.show()