-
Notifications
You must be signed in to change notification settings - Fork 3
/
bitVolUtil.py
130 lines (80 loc) · 2.44 KB
/
bitVolUtil.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import sys
import time
import pytz
import schedule
import json
import math
import numpy as np
import pandas as pd
import QuantLib as ql
from datetime import timezone
from pymysql import connect, err, sys, cursors
class set:
def __init__(self):
None
def printJson(content):
print(json.dumps(content, indent=2))
def scheduler(scheTime, job):
for shTime in scheTime:
schedule.every().day.at(shTime).do(job)
while True:
schedule.run_pending()
def job():
print('Hello')
def utc_to_local(utc_dt):
return utc_dt.replace(tzinfo=timezone.utc).astimezone(tz=pytz.timezone('US/Eastern'))
def connect_db(local=False):
if local == True:
conn_db = connect(host='root',
user='localdbusername',
passwd='dbpwd',
db='dbname')
else:
conn_db = connect(host='dburl',
user='dbusername',
passwd='dbpwd',
db='dbname')
return conn_db
def getLatestOptionChain(live=True):
conn_db = connect_db(live)
sql = "SELECT * FROM bitvol where ID=(SELECT ID FROM bitvol ORDER BY DateTime DESC LIMIT 1)"
opt_df = pd.read_sql(sql, con=conn_db)
return opt_df
def getOptionChainViaId(snapShotId):
conn_db = connect_db()
sql = "SELECT * FROM bitvol where ID='" + str(snapShotId) + "'"
opt_df = pd.read_sql(sql, con=conn_db)
return opt_df
def py2ql_date(pydate):
return ql.Date(pydate.day, pydate.month, pydate.year)
def getYearFrac(date0, date1):
day_count = ql.Actual365Fixed()
yrs = day_count.yearFraction(py2ql_date(date0), py2ql_date(date1))
if yrs == 0:
yrs += 0.001
return yrs
def jsonPrint(d):
print(json.dumps(d, indent=2))
def printList(l):
for item in l:
print(item)
def getATMstk(F0, Klist):
K0 = Klist[0]
Kdis = abs(K0 - F0)
K0pos = 0
for i in range(0, len(Klist)):
if abs(Klist[i] - F0) < Kdis:
K0pos = i
K0 = Klist[i]
Kdis = abs(Klist[i] - F0)
return K0
def volRealized(pxList, annu_factor=365):
retList = []
for i in range(1, len(pxList)):
retList.append(pxList[i] / pxList[i - 1] - 1)
return np.std(retList) * math.sqrt(annu_factor) * 100
def main(args):
timeList=['21:42','21:43','21:44','21:45']
scheduler(timeList,job)
if __name__ == '__main__':
sys.exit(main(sys.argv))