-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTraining4.py
99 lines (68 loc) · 2.8 KB
/
Training4.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
import numpy
import matplotlib.pyplot as plt
import pandas as pd
import math
from keras.models import Sequential
from keras.layers import Dense
from keras.layers import LSTM
from sklearn.preprocessing import MinMaxScaler
from sklearn.metrics import mean_squared_error
import json
from CoinbaseClient import CoinbaseClient
from datetime import datetime
import calendar
import csv
import os
def retrieveData(year):
testClient = CoinbaseClient()
#testClient.getCoinHistoricalData('BTC-USD',1625616000,1625702399, 300)
#start_time = datetime.fromtimestamp(datetime(2021, 7, 1).timestamp())
# with open('testData3/' + start_time.strftime('%m-%d-%y') +'.json', 'w') as f:
# f.write(json.dumps(testClient.getCoinHistoricalData('BTC-USD',start_time,end_time, 300)))
month = 1
while month <= 12:
start_time = datetime(year,month,1)
start_time_timestamp = start_time.timestamp()
end_time = datetime(year, month, 2)
end_time_timestamp = end_time.timestamp()
numOfDays = calendar.monthrange(start_time.year, start_time.month)[1]
tempList = []
title = start_time.strftime('%m-%Y')
with open('testData3/json/'+ str(year) + '/' + title +'.json', 'w') as f:
for _ in range(numOfDays):
tempList += testClient.getCoinHistoricalData('BTC-USD',start_time,end_time, 300)[::-1]
start_time_timestamp += 86400
start_time = datetime.fromtimestamp(start_time_timestamp)
end_time_timestamp += 86400
end_time = datetime.fromtimestamp(end_time_timestamp)
f.write(json.dumps(tempList))
with open('testData3/json/'+ str(year) + '/' + title +'.json') as json_file:
jsonData = json.load(json_file)
trainingCSV = open('testData3/csv/'+ 'trainingData' +'.csv', 'a', newline='')
csv_writer = csv.writer(trainingCSV)
for data in jsonData:
csv_writer.writerow(data)
trainingCSV.close()
month += 1
#Mon Jan 19 14:10:20 1970
def temp():
# with open('testData3/json/2015/03-2015.json') as json_file:
# jsonData = json.load(json_file)
# trainingCSV = open('testData3/csv/2015/03-2015.csv', 'w', newline='')
# csv_writer = csv.writer(trainingCSV)
# for data in jsonData:
# csv_writer.writerow(data)
# trainingCSV.close()
year = 2016
while year < 2020:
path = 'C:/Users/nipau/OneDrive/Desktop/CodingPrep/Projects/CryptoBot/testData3/json/' + str(year)
# path2 = 'C:/Users/nipau/OneDrive/Desktop/CodingPrep/Projects/CryptoBot/testData3/csv/' + str(year)
try:
os.mkdir(path)
# os.mkdir(path2)
except OSError as error:
pass
retrieveData(year)
year += 1
#retrieveData()
temp()