喜歡投資又想學一點程式語言
Python語言會是你最好的選擇
僅用短短幾行的程式碼
一口氣讓你體驗 :
1.網頁爬蟲(歷史股價,2000年至今)
2.資料儲存~csv檔
3.資料整理分析
3.繪圖~收盤價的歷史紀錄
------------------------------------------------------------------------------------------------------------------
import requests
site="https://query1.finance.yahoo.com/v7/finance/download/2330.TW?period1=0&period2=1557553257&interval=1d&events=history&crumb=hP2rOschxO0"
reponse=requests.post(site)
with open('file.csv','w') as f:
f.writelines(reponse.text)
import pandas as pd
df=pd.read_csv('file.csv',index_col='Date')
print(df)
df.Close.plot()
--------------------------------------------------------------------------------------------------------------------
有興趣的朋友請參考:
finlab部落格:https://www.finlab.tw
沒有留言:
張貼留言