Browse Source

get history 2000 bars of daily by get_bars

Daniel 3 years ago
parent
commit
10cf9ab797

+ 3 - 0
.idea/.gitignore

@@ -0,0 +1,3 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml

+ 6 - 0
.idea/inspectionProfiles/profiles_settings.xml

@@ -0,0 +1,6 @@
+<component name="InspectionProjectProfileManager">
+  <settings>
+    <option name="USE_PROJECT_PROFILE" value="false" />
+    <version value="1.0" />
+  </settings>
+</component>

+ 4 - 0
.idea/misc.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8 (jqdata)" project-jdk-type="Python SDK" />
+</project>

+ 8 - 0
.idea/modules.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/.idea/stock.iml" filepath="$PROJECT_DIR$/.idea/stock.iml" />
+    </modules>
+  </component>
+</project>

+ 8 - 0
.idea/stock.iml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="PYTHON_MODULE" version="4">
+  <component name="NewModuleRootManager">
+    <content url="file://$MODULE_DIR$" />
+    <orderEntry type="jdk" jdkName="Python 3.8 (jqdata)" jdkType="Python SDK" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>

+ 6 - 0
.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
+  </component>
+</project>

+ 47 - 0
get_hisbars_tosql.py

@@ -0,0 +1,47 @@
+from jqdatasdk import *
+auth('18616891214','Ea?*7f68nD.dafcW34d!')
+from sqlalchemy import create_engine
+import pandas as pd
+import threading
+
+
+from datetime import datetime as dt
+import pymysql
+
+starttime = dt.now()
+stocks = list(get_all_securities(['stock'],date='2021-12-31').index)
+
+print('ready to get bars')
+df = get_bars(stocks, count=2000, unit='1d',
+                      fields=['date', 'open', 'close', 'high', 'low', 'volume', 'money'], include_now=False, df=True)
+
+
+# db = pymysql.connect(host='localhost',
+#                      user='root',
+#                      password='VopNWyLA-W8W8EooUmsX',
+#                      database='test-stocks',
+#                      connect_timeout=600)
+db_stk_sql = pymysql.connect(host='chenzheshi.myds.me',
+                             port=3456,
+                             user='root',
+                             password='r6kEwqWU9!v3',
+                             database='stocks',
+                             connect_timeout=600)
+cursor = db_stk_sql.cursor()
+engine = create_engine('mysql+pymysql://root:r6kEwqWU9!v3@chenzheshi.myds.me:3456/stocks?charset=utf8')
+
+print('ready to write to mysql')
+
+for stock in stocks:
+    df_stock =df.loc[stock]
+    df_stock.to_sql('stk%s_%s' % (stock[:6], '1d'), con=engine, index=True, if_exists='replace')
+    with engine.connect() as con:
+        con.execute('ALTER TABLE stk%s_%s ADD PRIMARY KEY (`date`);' %(stock[:6], '1d'))
+endtime = dt.now()
+db_stk_sql.close()
+print((endtime-starttime).seconds)
+
+
+
+
+