質問編集履歴

1

URLのリクエスト仕様を記載

2020/03/25 10:51

投稿

shinnzinbuyer
shinnzinbuyer

スコア19

test CHANGED
File without changes
test CHANGED
@@ -93,3 +93,23 @@
93
93
 
94
94
 
95
95
  print(df0)
96
+
97
+
98
+
99
+ ###リクエストの仕様は以下です
100
+
101
+ def requests_to_cryptocompare(toTs = -1):
102
+
103
+ return requests.get('https://min-api.cryptocompare.com/data/v2/histohour', params={
104
+
105
+ 'fsym': "BTC", # 仮想通貨のシンボル
106
+
107
+ 'tsym': "JPY", # ペアの通貨のシンボル
108
+
109
+ 'limit': 2000, # レコードの取得数、最大2000
110
+
111
+ 'e': "bitFlyerFX", # 取引所
112
+
113
+ 'toTs': toTs # 取得したいデータの基準となるタイムスタンプ(unixtime)
114
+
115
+ })