class類在python中獲取金融數(shù)據(jù)的實例方法
我們搜集金融數(shù)據(jù),通常想要的是利用爬蟲的方法。其實我們最近所學的class不僅可以進行類調用,在獲取數(shù)據(jù)方面同樣是可行的,很多小伙伴都比較關注理財方面的情況,對金融數(shù)據(jù)的需要也是比較多的。下面就class類在python中獲取金融數(shù)據(jù)的方法為大家?guī)碇v解。
使用tushare獲取所有A股每日交易數(shù)據(jù),保存到本地數(shù)據(jù)庫,同時每日更新數(shù)據(jù)庫;根據(jù)行情數(shù)據(jù)進行可視化和簡單的策略分析與回測。由于篇幅有限,本文著重介紹股票數(shù)據(jù)管理(下載、數(shù)據(jù)更新)的面向對象編程應用實例。
#導入需要用到的模塊 import numpy as np import pandas as pd from dateutil.parser import parse from datetime import datetime,timedelta #操作數(shù)據(jù)庫的第三方包,使用前先安裝pip install sqlalchemy from sqlalchemy import create_engine #tushare包設置 import tushare as ts token='輸入你在tushare上獲得的token' pro=ts.pro_api(token) #使用python3自帶的sqlite數(shù)據(jù)庫 #本人創(chuàng)建的數(shù)據(jù)庫地址為c:\zjy\db_stock\ file='sqlite:///c:\\zjy\\db_stock\\' #數(shù)據(jù)庫名稱 db_name='stock_data.db' engine = create_engine(file+db_name) class Data(object): def __init__(self, start='20050101', end='20191115', table_name='daily_data'): self.start=start self.end=end self.table_name=table_name self.codes=self.get_code() self.cals=self.get_cals() #獲取股票代碼列表 def get_code(self): codes = pro.stock_basic(list_status='L').ts_code.values return codes #獲取股票交易日歷 def get_cals(self): #獲取交易日歷 cals=pro.trade_cal(exchange='') cals=cals[cals.is_open==1].cal_date.values return cals #每日行情數(shù)據(jù) def daily_data(self,code): try: df0=pro.daily(ts_code=code,start_date=self.start, end_date=self.end) df1=pro.adj_factor(ts_code=code,trade_date='') #復權因子 df=pd.merge(df0,df1) #合并數(shù)據(jù) except Exception as e: print(code) print(e) return df #保存數(shù)據(jù)到數(shù)據(jù)庫 def save_sql(self): for code in self.codes: data=self.daily_data(code) data.to_sql(self.table_name,engine, index=False,if_exists='append') #獲取最新交易日期 def get_trade_date(self): #獲取當天日期時間 pass #更新數(shù)據(jù)庫數(shù)據(jù) def update_sql(self): pass #代碼省略 #查詢數(shù)據(jù)庫信息 def info_sql(self):
代碼運行
#假設你將上述代碼封裝成class Data #保存在'C:\zjy\db_stock'目錄下的down_data.py中 import sys #添加到當前工作路徑 sys.path.append(r'C:\zjy\db_stock') #導入py文件中的Data類 from download_data import Data #實例類 data=Data() #data.save_sql() #只需運行一次即可 data.update_sql() data.info_sql()
實例擴展:
Python下,pandas_datareader模塊可以用于獲取研究數(shù)據(jù)。例子如下:
>>> from pandas_datareader.data import DataReader >>> >>> datas = DataReader(name='AAPL', data_source='yahoo', start='2018-01-01') >>> >>> type(datas) <class 'pandas.core.frame.DataFrame'> >>> datas Open High Low Close Adj Close \ Date 2018-01-02 170.160004 172.300003 169.259995 172.259995 172.259995 2018-01-03 172.529999 174.550003 171.960007 172.229996 172.229996 2018-01-04 172.539993 173.470001 172.080002 173.029999 173.029999 2018-01-05 173.440002 175.369995 173.050003 175.000000 175.000000 2018-01-08 174.350006 175.610001 173.929993 174.350006 174.350006 2018-01-09 174.550003 175.059998 173.410004 174.330002 174.330002 2018-01-10 173.160004 174.300003 173.000000 174.289993 174.289993 2018-01-11 174.589996 175.490005 174.490005 175.279999 175.279999 2018-01-12 176.179993 177.360001 175.649994 177.089996 177.089996 Volume Date 2018-01-02 25555900 2018-01-03 29517900 2018-01-04 22434600 2018-01-05 23660000 2018-01-08 20567800 2018-01-09 21584000 2018-01-10 23959900 2018-01-11 18667700 2018-01-12 25226000 >>> >>> print(datas.to_csv()) Date,Open,High,Low,Close,Adj Close,Volume 2018-01-02,170.160004,172.300003,169.259995,172.259995,172.259995,25555900 2018-01-03,172.529999,174.550003,171.960007,172.229996,172.229996,29517900 2018-01-04,172.539993,173.470001,172.080002,173.029999,173.029999,22434600 2018-01-05,173.440002,175.369995,173.050003,175.0,175.0,23660000 2018-01-08,174.350006,175.610001,173.929993,174.350006,174.350006,20567800 2018-01-09,174.550003,175.059998,173.410004,174.330002,174.330002,21584000 2018-01-10,173.160004,174.300003,173.0,174.289993,174.289993,23959900 2018-01-11,174.589996,175.490005,174.490005,175.279999,175.279999,18667700 2018-01-12,176.179993,177.360001,175.649994,177.089996,177.089996,25226000 >>>
到此這篇關于class類在python中獲取金融數(shù)據(jù)的實例方法的文章就介紹到這了,更多相關class類怎樣在python中獲取金融數(shù)據(jù)內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
詳解Python結合Genetic?Algorithm算法破解網(wǎng)易易盾拼圖驗證
很多網(wǎng)站在登錄或者注冊時都會遇到拼圖驗證碼,這種拼圖驗證碼實際上是多個小碎片經(jīng)過重新組合成的一張整體。本文將和大家分享一個基于Python?Genetic?Algorithm的破解拼圖驗證碼的辦法,需要的可以參考一下2022-02-02Python使用struct處理二進制(pack和unpack用法)
這篇文章主要介紹了Python使用struct處理二進制(pack和unpack用法),幫助大家更好的理解和使用python,感興趣的朋友可以了解下2020-11-11python opencv實現(xiàn)直線檢測并測出傾斜角度(附源碼+注釋)
這篇文章主要介紹了python opencv實現(xiàn)直線檢測并測出傾斜角度(附源碼+注釋),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2020-12-12