首先导入tushare
先读取股票月收益率数据,在用#避免多次读取。
这是通过tushare获取的茅台2015年到20年的股票数据。
这是获取的上交所的数据。
下面是全部的代码。
import tushare as ts
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from matplotlib import ticker
startday = '2015-01-01'
endday = '2020-04-01'
tscode = '600519'
tsindx = 'sh'
#df1 = ts.get_k_data(tscode, start = startday, end = endday, ktype = 'M')
#df2 = ts.get_k_data(tsindx, start = startday, end = endday, ktype = 'M')
#df1.to_excel('600519.xlsx',index=False)
#df2.to_excel('sh.xlsx',index=False)
df1=pd