-
Notifications
You must be signed in to change notification settings - Fork 5
/
stock_behavior_analytics.py
566 lines (495 loc) · 23.9 KB
/
stock_behavior_analytics.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
import requests,math
import pandas as pd
from pymongo import MongoClient
from datetime import datetime
from collections import Counter
from bokeh.layouts import gridplot
from dateutil.parser import parse
import json
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
import matplotlib.ticker as mticker
from mpl_finance import candlestick_ohlc
import random
from bokeh.plotting import figure, output_file, show
from bokeh.models import ColumnDataSource
from bokeh.models.widgets import DataTable, DateFormatter, TableColumn
from bokeh.layouts import column
pd.set_option('display.max_columns', 30)
pd.set_option('display.line_width', 200)
# Function to read data from csv file
def read_data_csv(file_name):
data_df = pd.read_csv(file_name)
print("************ data from csv ************")
print(data_df.head())
return data_df
# Function to make dynamic requests to get data
def read_data_api(ticker_name, start_date, end_date, freq_in_min):
headers = {'Content-Type': 'application/json',
'Authorization': 'Token 243605654ef881d04ecd512109c9244d54486a9d'}
# get_url = "https://api.tiingo.com/iex/VMW/prices?startDate=2017-05-01&endDate=2017-05-1&resampleFreq=1min"
print("start_date : ",start_date)
print("end_date : ",end_date)
get_url = "https://api.tiingo.com/iex/"+ticker_name+"/prices?startDate="+start_date+"&endDate="+end_date+"&resampleFreq="+str(freq_in_min)
requestResponse = requests.get(get_url, headers=headers)
print("requestResponse : ",requestResponse)
df = pd.DataFrame(requestResponse.json())
print("response dataframe : ",df.head())
# Saving data to csv file
df.to_csv("full_year_ndaq_data.csv")
records = json.loads(df.T.to_json()).values()
# Saving Data to mongodb
for event in records:
print("event : ",event)
event["ticker"] = ticker_name
event["frequency"] = freq_in_min
event["flag"] = "5year"
# inserting
db.insert(event)
return df
# Function to get data from mongodb
def read_data_db(database, ticker_name, start_date, end_date, frequency):
# splitted_sd = start_date.split("-")
# splitted_ed = end_date.split("-")
# s_date = datetime.datetime(int(splitted_sd[0]),int(splitted_sd[1]),int(splitted_sd[2]))
# e_date = datetime.datetime(int(splitted_ed[0]),int(splitted_ed[1]),int(splitted_ed[2]))
# datetime(start_date)
print('getting data from mongodb for {} from {} to {} with frequecy of {}'.format(ticker_name, start_date, end_date, frequency))
data = database.find({
'ticker':ticker_name,
# 'date':{"$gt":start_date, "$lte":end_date},
'frequency':frequency
})
out = pd.DataFrame(list(data))
print("total data points : ",len(out))
return out
#
def draw_plot(dataframe):
fig = plt.figure(figsize=(16, 9))
ax = fig.add_subplot(2, 2, 1)
ax.set_xlabel('Date')
# ax.set_ylabel('Closing price ($)')
# dataframe.date = dataframe.date.apply(lambda x: x.split("T")[0])
ax.plot(dataframe.date, dataframe.close, label=ticker)
ax.plot(dataframe.date, dataframe.short_avg, label='Short Avg', color='green')
ax.plot(dataframe.date, dataframe.long_avg, label='Long Avg', color='red')
# ax.legend()
# plt.xticks(rotation=90)
# plt.savefig(ticker+'_stocks.png')
plt.show()
return fig
def date_time(x):
return np.array(x, dtype=np.datetime64)
def read_gold():
df = pd.read_csv("$GOLD-2.csv")
return df
def read_snp():
df = pd.read_csv("$SPX.csv")
return df
def make_hist_data(data, x_range=20):
start_value = int(math.floor(min(data)/x_range)*x_range)
end_value = int(math.ceil(max(data)/x_range)*x_range)
x_values = [i for i in range(start_value,end_value+x_range,x_range)]
out_dict = dict.fromkeys(x_values,0)
for i in data:
out_dict[int(math.ceil(i/x_range))*x_range]+=1
return out_dict
def draw_plot_bokeh(ticker, dataframe, windows, fall_indices, rise_indices, matrices):
TOOLS = "pan,wheel_zoom,box_zoom,reset,save"
# # Plotting Close Price, Short Avg, Long Avg
# p1 = figure(x_axis_type="datetime",tools=TOOLS, title="{} Closing Prices".format(ticker), plot_width=1200, plot_height=400)
# p1.grid.grid_line_alpha = 0.3
# p1.xaxis.axis_label = 'Date'
# p1.yaxis.axis_label = 'Price'
# p1.line(date_time(dataframe.date), dataframe.close, color='blue', legend="close")
# p1.line(date_time(dataframe.date), dataframe.short_avg, color='green', legend="short_avg")
# p1.line(date_time(dataframe.date), dataframe.long_avg, color='red', legend="long_avg")
# p1.legend.location = "top_left"
# Plotting
p2 = figure(x_axis_type="datetime",tools=TOOLS, title=ticker+" Short Average V/S Long Average", plot_width=1200, plot_height=400)
p2.grid.grid_line_alpha = 0.3
p2.xaxis.axis_label = 'Date'
p2.yaxis.axis_label = 'Price'
p2.legend.location = "top_left"
dataframe.date = pd.to_datetime(dataframe.date)
colors = ["black", "cyan", "magenta", "grey"]
p2.line(date_time(dataframe.date), dataframe.close, color='blue', legend="close")
p2.line(date_time(dataframe.date), dataframe.short_avg, color='green', legend="short_avg")
p2.line(date_time(dataframe.date), dataframe.long_avg, color='red', legend="long_avg")
p2.circle(date_time(dataframe.date[rise_indices]), dataframe.close[rise_indices], color='green', size=10)
p2.circle(date_time(dataframe.date[fall_indices]), dataframe.close[fall_indices], color='red', size=10)
for i in range(len(windows)):
p2.line(date_time(dataframe.date[windows[i]]), dataframe.close[windows[i]], color=random.choice(colors), legend="close")
data = dict(
entry_50=matrices.entry_50.values,
peak_price=matrices.peak_price.values,
exit_50=matrices.exit_50.values,
mean_price=matrices.mean_price.values,
days_to_peak=matrices.days_to_peak.values,
days_peak_to_exit=matrices.days_peak_to_exit.values,
entry_to_peak=matrices.entry_to_peak.values,
peak_to_exit=matrices.peak_to_exit.values,
std_dev=matrices.std_dev.values,
total_days=matrices.total_days.values,
)
# Plotting Table for Ticker Name
print("data : ", data)
source = ColumnDataSource(data)
columns = [
TableColumn(field="entry_50", title="entry_50"),
TableColumn(field="exit_50", title="exit_50"),
TableColumn(field="mean_price", title="mean_price"),
TableColumn(field="peak_price", title="peak_price"),
TableColumn(field="peak_to_exit", title="peak_to_exit"),
TableColumn(field="entry_to_peak", title="entry_to_peak"),
TableColumn(field="days_to_peak", title="days_to_peak"),
TableColumn(field="days_peak_to_exit", title="days_peak_to_exit"),
TableColumn(field="std_dev", title="std_dev"),
TableColumn(field="total_days", title="total_days")
]
data_table = column(DataTable(source=source, columns=columns, width=600, height=400))
xp1 = [str(i) for i in list(make_hist_data(list(matrices.days_peak_to_exit.values), x_range=10).keys())]
yp1 = list(make_hist_data(list(matrices.days_peak_to_exit.values), x_range=10).values())
fp1 = figure(x_range=xp1, plot_height=200, title=ticker + " Days to Peak Frequency",tools=TOOLS)
fp1.vbar(x=xp1, top=yp1, width=0.9)
fp1.xgrid.grid_line_color = None
# fp1.y_range.start = 0
fp1.legend.location = "top_centre"
xp2 = [str(i) for i in list(make_hist_data(list(matrices.entry_to_peak.values), x_range=10).keys())]
yp2 = list(make_hist_data(list(matrices.entry_to_peak.values), x_range=10).values())
fp2 = figure(x_range= xp2, plot_height=200, title=ticker+" Price to Peak Frequency",tools=TOOLS)
fp2.vbar(x=xp2, top=yp2, width=0.9)
fp2.xgrid.grid_line_color = None
# fp2.y_range.start = 0
fp2.legend.location = "top_centre"
return p2,data_table, fp1, fp2
# Function to draw plot using matplotlib
def find_intersection_points(first_list, second_list):
f = np.array(first_list)
g = np.array(second_list)
idx = np.argwhere(np.diff(np.sign(f - g)) != 0).reshape(-1) + 0
return idx
#
def find_adjacent_close_prices(plot_list_1, plot_list_2, indices):
print("*************** Finding Adjacent Indices ******************")
rising_indices = []
falling_indices = []
for i,indx in enumerate(indices):
curr_price = plot_list_1[indx]
if i>0:
prev_price = plot_list_1[indx - 1]
else:
prev_price = 0
futr_price = plot_list_1[indx + 1]
futr_avg = plot_list_2[indx + 1]
if futr_price >= curr_price and futr_price>=futr_avg:
rising_indices.append(indx)
elif futr_price<curr_price and futr_price>=futr_avg:
rising_indices.append(indx)
else:
falling_indices.append(indx)
print("falling_indices : ", falling_indices)
print("rising_indices : ", rising_indices)
return falling_indices, rising_indices
# Finding Adjaccent Close Prices
def calculate_rolling_avgs(dataframe):
print(dataframe.head())
print("********* Calculating 50 Days rolling average *********")
dataframe.date = dataframe.date.apply(lambda x: parse(x).strftime('%Y-%m-%d'))
print(dataframe.head())
dataframe.close = dataframe.close.apply(lambda x: float(x) if x!='null' else 0)
short_rolling_avg = dataframe.close.rolling(50).mean()
long_rolling_avg = dataframe.close.rolling(200).mean()
dataframe['short_avg'] = short_rolling_avg
dataframe['long_avg'] = long_rolling_avg
# dataframe.short_avg = dataframe.short_avg.apply(lambda x: float(x) if x!='null' else 0)
print("************************ dataframe ********************")
dataframe.short_avg = dataframe.short_avg.fillna(0)
dataframe.long_avg = dataframe.long_avg.fillna(0)
print(dataframe.tail())
# print("********************** Calling Demo Plot ******************")
# fig = draw_plot(dataframe)
indices = find_intersection_points(first_list=dataframe.short_avg.values, second_list=dataframe.long_avg.values)
print("\t ***************** Intersection Point ******************* \t")
print(indices)
#find first index
print("******************** Finding First Index *********************")
first_index = check_first_index(dataframe.short_avg.values, indices)
# Function to find fall and rise indices
# fall_indices, rise_indices = generate_rise_and_fall(indices,first_index)
# Finding Rising and Falling Indices
fall_indices, rise_indices = find_adjacent_close_prices(dataframe.short_avg.values, dataframe.long_avg.values, indices)
# Ploting Rising and Falling Indices
# plot_rise_and_fall_bokeh(dataframe.date.values, dataframe.short_avg.values, rise_indices, fall_indices)
# Finding Short Windows using rising indices and falling indices
windows = get_windows(dataframe.date.values, dataframe.short_avg.values, rise_indices, fall_indices)
# Function to find matrices from short windows
matrices = get_matrices(dataframe, windows)
# # Function to plot in dashboard
# draw_plot_bokeh(dataframe, windows, fall_indices, rise_indices, matrices)
return dataframe, windows, fall_indices, rise_indices, matrices
# Function to check first index
def check_first_index(plot_list, indices):
indx = indices[0]
futr_price = plot_list[indx + 1]
curr_price = plot_list[indx]
if futr_price>curr_price:
return "rise"
else:
return 'fall'
# Function to generate rise indices and falling indices
def generate_rise_and_fall(arry, first_index=""):
if first_index == "rise":
rise_indices = [arry[i] for i in range(0,len(arry),2)]
fall_indices = [arry[i] for i in range(1,len(arry),2)]
else:
fall_indices = [arry[i] for i in range(0, len(arry), 2)]
rise_indices = [arry[i] for i in range(1, len(arry), 2)]
print("rising indices : ",rise_indices)
print("falling indices : ",fall_indices)
return fall_indices,rise_indices
# Plotting Rising and Falling Indices
def plot_rise_and_fall(date_list, plot_list, rise_indx, fall_indx, fig):
plt.plot(date_list[rise_indx], plot_list[rise_indx], 'ro', color='green')
plt.plot(date_list[fall_indx], plot_list[fall_indx], 'ro', color='red')
# plt.show()
# Plotting Rising and Falling Indices
# def plot_rise_and_fall_bokeh(date_list, plot_list, rise_indx, fall_indx):
# fig.circle(date_list[rise_indx], plot_list[rise_indx],color='green')
# fig.circle(date_list[fall_indx], plot_list[fall_indx],color='red')
# show(fig)
# Function to find the windows using rising points
def get_windows(date_list, plot_list, rising_indices, falling_indices):
windows = []
windows_out = []
print("rising_indices : ",len(rising_indices))
print("falling_indices: ",len(falling_indices))
for i in range(len(rising_indices)):
try:
if falling_indices[i+1]:
windows.append((rising_indices[i], falling_indices[i]))
except:
windows.append((rising_indices[i], len(date_list)-1))
pass
print(" ************** Short Windows *************** ")
print(windows)
colors = ["red", "blue", "black", "cyan", "magenta", "green", "grey"]
for i in range(len(windows)):
d_indx = [j for j in range(windows[i][0], windows[i][1])]
windows_out.append(d_indx)
# plt.plot(date_list[d_indx], plot_list[d_indx], color=random.choice(colors))
# plt.show()
return windows_out
# Function to get matrices from the window frames
def get_matrices(dataframe, windows):
print("**************** Getting Insight from the windows *******************")
print()
# dataframe.date = dataframe.date.apply(lambda x : x.split("T")[0])
rise_days_array = []
fall_days_array = []
rise_days_percents = []
fall_days_percents = []
out_array = []
for window in windows:
out = {}
close_prices = dataframe.close[window].values
dates = dataframe.date[window].values
max_close = np.max(close_prices)
min_close = np.min(close_prices)
mean_close = np.mean(close_prices)
mean_close = round(mean_close,3)
std_close = np.std(close_prices, ddof=1)
std_close = round(std_close,3)
n_days = len(window)
maxp_day = dataframe.date[window[list(close_prices).index(max_close)]]
minp_day = dataframe.date[window[list(close_prices).index(min_close)]]
max_rise_diff = window[list(close_prices).index(max_close)] - window[list(close_prices).index(min_close)]
max_fall_diff = n_days - max_rise_diff
rise_percentage = round((max_close-min_close)/max_close * 100,3)
fall_percentage = round((max_close-close_prices[-1])/max_close * 100,3)
rise_days_percents.append(rise_percentage)
fall_days_percents.append(fall_percentage)
rise_days_array.append((n_days, max_rise_diff))
fall_days_array.append((n_days, max_fall_diff))
out["entry_to_peak"] = rise_percentage
out["peak_to_exit"] = fall_percentage
out["days_peak_to_exit"] = max_fall_diff
out["days_to_peak"] = max_rise_diff
out["exit_50"] = close_prices[-1]
out["mean_price"] = mean_close
out["entry_50"] = min_close
out["peak_price"] = max_close
out["total_days"] = n_days
out["std_dev"] = std_close
# fig = plt.figure(figsize=(14, 5))
# ax = fig.add_subplot(1, 1, 1)
# title = ticker+" Stocks between "+dates[0]+" to "+dates[-1]
# filename = title+".png"
# ax.set_title(str(title))
# ax.set_xlabel('Date')
# ax.set_ylabel('Closing price ($)')
# ax.plot(dates, close_prices, label=ticker)
# ax.plot(maxp_day, max_close, 'ro', label='peak_price : '+str(max_close), color='green')
# ax.plot(minp_day, min_close, 'ro', label='entry_50 : '+str(min_close), color='red')
# ax.plot(dates, [mean_close]*len(dates), label='mean_price : '+str(mean_close), color='cyan')
# ax.plot(dates, [std_close+max_close]*len(dates), 'ro', label='std_dev : '+str(std_close), color='pink')
# ax.plot(dates, [std_close+max_close]*len(dates), 'ro', label='total_days : '+str(n_days), color='magenta')
# ax.plot(dates, [std_close+max_close]*len(dates), 'ro', label='days_to_peak : '+str(max_rise_diff), color='blue')
# ax.plot(dates, [std_close+max_close]*len(dates), 'ro', label='days_peak_to_exit : '+str(max_fall_diff), color='blue')
# ax.plot(dates, [std_close+max_close]*len(dates), 'ro', label='entry_to_peak % : '+str(rise_percentage), color='blue')
# ax.plot(dates, [std_close+max_close]*len(dates), 'ro', label='peak_to_exit % : '+str(fall_percentage), color='blue')
# ax.legend(loc="upper left")
# plt.xticks(rotation=90)
# plt.savefig(filename)
# plt.show()
out_array.append(out)
print("average window frame : ",np.mean([x[0] for x in rise_days_array]))
print("average rise days : ",np.mean([x[1] for x in rise_days_array]))
print("average fall days : ",np.mean([x[1] for x in fall_days_array]))
print("average rise percent : ",np.mean(rise_days_percents))
print("average fall percent : ",np.mean(fall_days_percents))
print()
print("********************* Metrics **************************")
out = pd.DataFrame(out_array)
# out.to_csv("distribution.csv")
print(out)
# Previous Data
# fig = plt.figure()
# ax = fig.add_subplot(1, 1, 1)
# ax.set_xlabel('Days')
# ax.set_ylabel('Frequency')
# ax.set_title("Days to Peak Frequency Distribution")
# data = list(out.days_to_peak.values)
# n, bins, patches = plt.hist(data, 10, histtype='bar', rwidth=0.8, stacked=True, label='days_to_peak')
# fig, ax = plt.subplots(figsize=(14, 5))
# data = list(out.days_to_peak.values)
# make_hist(ax, data, bins=list(range(10)) + list(range(10, 41, 5)) + [np.inf], extra_y=6,
# title='Days to Peak Frequency Distribution', xlabel='Days', ylabel='Frequency')
# # plt.show()
#
# x = list(out.entry_to_peak.values)
# fig, ax = plt.subplots(figsize=(14, 5))
# make_hist(ax, x, bins=list(range(10)) + list(range(10, 41, 5)) + [np.inf], extra_y=6,title='Rise Percentages Frequency Distribution',xlabel='Percentages',ylabel='Frequency')
# plt.show()
return out
# Draw CandleSticks
def draw_candlesticks(dataframe):
dataframe.date = dataframe.date.apply(lambda x : mdates.datestr2num(x))
# dataframe.date = dataframe.date.apply(bytespdate2num('%Y-%m-%d'))
fig = plt.figure()
ax1 = plt.subplot2grid((1, 1), (0, 0))
open = dataframe.open.values
close = dataframe.close.values
high = dataframe.high.values
low = dataframe.low.values
date = dataframe.date.values
ohlc = []
x=0
y = len(date)
while x < y:
append_me = date[x], float(open[x]), float(high[x]), float(low[x]), float(close[x])
ohlc.append(append_me)
x += 1
candlestick_ohlc(ax1, ohlc, width=0.4, colorup='#77d879', colordown='#db3f3f')
for label in ax1.xaxis.get_ticklabels():
label.set_rotation(45)
ax1.xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d'))
ax1.xaxis.set_major_locator(mticker.MaxNLocator(10))
ax1.grid(True)
plt.xlabel('Date')
plt.ylabel('Price')
plt.title(ticker)
plt.legend()
plt.subplots_adjust(left=0.09, bottom=0.20, right=0.94, top=0.90, wspace=0.2, hspace=0)
# plt.show()
return fig
# Make Histogram Function
def make_hist(ax, x, bins=None, binlabels=None, width=0.85, extra_x=1, extra_y=4,
text_offset=0.3, title=r"Frequency diagram",
xlabel="Values", ylabel="Frequency"):
if bins is None:
xmax = max(x)+extra_x
bins = range(xmax+1)
if binlabels is None:
if np.issubdtype(np.asarray(x).dtype, np.integer):
binlabels = [str(bins[i]) if bins[i+1]-bins[i] == 1 else
'{}-{}'.format(bins[i], bins[i+1]-1)
for i in range(len(bins)-1)]
else:
binlabels = [str(bins[i]) if bins[i+1]-bins[i] == 1 else
'{}-{}'.format(*bins[i:i+2])
for i in range(len(bins)-1)]
if bins[-1] == np.inf:
binlabels[-1] = '{}+'.format(bins[-2])
n, bins = np.histogram(x, bins=bins)
patches = ax.bar(range(len(n)), n, align='center', width=width)
ymax = max(n)+extra_y
ax.set_xticks(range(len(binlabels)))
ax.set_xticklabels(binlabels)
ax.set_title(title)
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
ax.set_ylim(0, ymax)
ax.grid(True, axis='y')
# http://stackoverflow.com/a/28720127/190597 (peeol)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['bottom'].set_visible(False)
ax.spines['left'].set_visible(False)
# http://stackoverflow.com/a/11417222/190597 (gcalmettes)
ax.xaxis.set_ticks_position('none')
ax.yaxis.set_ticks_position('none')
autolabel(patches, text_offset)
fname=ticker+"_"+title+".png"
plt.savefig(fname)
def autolabel(rects, shift=0.3):
"""
http://matplotlib.org/1.2.1/examples/pylab_examples/barchart_demo.html
"""
# attach some text labels
for rect in rects:
height = rect.get_height()
if height > 0:
plt.text(rect.get_x()+rect.get_width()/2., height+shift, '%d'%int(height),
ha='center', va='bottom')
if __name__ == '__main__':
# db = MongoClient('localhost', 27017)["algo_data"]["tiingo_test"]
# ticker = input("please enter ticker name (ex. NDAQ): ")
# st_date = input("please enter start date (ex. 2017-05-01): ")
# ed_date = input("please enter end date (ex. 2017-05-01): ")
# frequency = input("please enter granular frequency (ex. 1min): ")
ticker = 'NVDA'
filename=ticker+'.csv'
st_date = "2013-04-01"
ed_date = '2014-04-01'
# st_date=datetime(2017, 1, 1, 0, 0, 0)
# ed_date=datetime(2018, 4, 1, 0, 0, 0)
frequency = "12hour"
# Function to read data using tiingo.com api
# data_df = read_data_api(ticker_name=ticker, start_date=st_date, end_date=ed_date, freq_in_min=frequency)
# Function to read data from a csv or excel file
# data_df = read_data_csv('TSLA.csv')
# data_df = read_data_csv('ADSK.csv')
data_df_ticker = read_data_csv(filename)
data_df_gold = read_data_csv("$GOLD-2.csv")
data_df_spx = read_data_csv("$SPX.csv")
# Function to read data from mongodb
# data_df = read_data_db(database=db, ticker_name=ticker, start_date=st_date, end_date=ed_date, frequency=frequency)
# Function to plot the graph using plotly
# draw_graph(data_df=data_df)
# Function to calculate 50days rolling average
tkr_dataframe, tkr_windows, tkr_fall_indices, tkr_rise_indices, tkr_matrices = calculate_rolling_avgs(data_df_ticker)
gold_dataframe, gold_windows, gold_fall_indices, gold_rise_indices, gold_matrices = calculate_rolling_avgs(data_df_gold)
spx_dataframe, spx_windows, spx_fall_indices, spx_rise_indices, spx_matrices = calculate_rolling_avgs(data_df_spx)
# Function to plot in dashboard
tkr_p1, tkr_table, tkr_f1, tkr_f2 = draw_plot_bokeh(ticker,tkr_dataframe, tkr_windows, tkr_fall_indices, tkr_rise_indices, tkr_matrices)
gold_p1, gold_table, gold_f1, gold_f2 = draw_plot_bokeh("GOLD",gold_dataframe, gold_windows, gold_fall_indices, gold_rise_indices, gold_matrices)
spx_p1, spx_table, spx_f1, spx_f2 = draw_plot_bokeh("SPX",spx_dataframe, spx_windows, spx_fall_indices, spx_rise_indices, spx_matrices)
# output to static HTML file
grid_plot_tkr = gridplot([[tkr_p1],[tkr_table, column(tkr_f1, tkr_f2)]])
grid_plot_gold = gridplot([[gold_table, column(gold_f1, gold_f2)]])
grid_plot_spx = gridplot([[spx_table, column(spx_f1, spx_f2)]])
output_file("stock_behavior_analytics.html")
show(column(grid_plot_tkr, grid_plot_gold,grid_plot_spx))
# show(gridplot([[grid_plot_tkr], [grid_plot_gold],[grid_plot_spx]]))