pythonでcoinbase価格を取得しようとしています。
以下の通り取得自体はできるのですが、spotで取得すると何時何分の価格なのかが不明
historicで取得することはできるのですが、2分遅れとなるため、spotで何時何分の価格情報なのかを調べたいのですがすべがあるでしょうか?
import datetime import time from coinbase.wallet.client import Client from coinbase.wallet.model import APIObject api_key = 'xxxxxxxxxxxxxxxxx' api_secret = 'xxxxxxxxxxxxxxxxx' client = Client(api_key, api_secret) cnt = 0 while(1): print(datetime.datetime.now()) print(client._make_api_object(client._get('v2', 'prices', 'BTC-USD', 'spot'), APIObject)) cnt+=1 time.sleep(1) if(cnt>=100): break
あなたの回答
tips
プレビュー