最初の質問では、oanda の模擬取引 API を接続して EUR_USD のリアルタイム為替レートを取得することが解決されました。熱心な支援をしていただいた @prolifes に改めて感謝します。手順は次のとおりです:
インポート リクエスト
import json
url = " https://api-fxpractice.oanda.com/v1/prices"
instruments = 'EUR_USD'
account_id = 'cawa11'
params = {' Instruments ':Instruments、' AccountId ':Account_id}
Access_token =' A554DB3A48AC8180A6996A5547BA1663-AC5947E64456CC5842A34F4CE5947E64456 s。 get(url,headers = headers, params=params )
print(r.json())
結果の json は次のとおりです:
{'prices': [{'bid': 1.0926, 'time' : '2017-05-03T05:45:25.737018Z', 'ask': 1.09274, 'instrument': 'EUR_USD'}]}
次に、EUR_USD と USD_CAD のリアルタイム為替レートを取得したいと思います。同時に、次の形式で json を取得します:
{'prices': [{'instrument' : 'EUR_USD', 'ask': 1.09324, 'time': '2017-05-03T04:44:38.200174Z ', 'bid': 1.09311},{'instrument': 'USD_CAD', 'ask': 1.37270, 'time': '2017-05-03T04:44:38.200174Z', 'bid': 1.37251}]}
大家讲道理2017-05-18 10:57:43
问题既解决,谢谢各位关注:
インポートリクエスト
インポートjson
url = "https://api-fxpractice.oanda.com/v1/prices"
instruments = 'EUR_USD,USD_CAD'
account_id = 'cawa11'
params = {'instruments':instruments,'accountId':account_id}
access_token = 'a554db3a48ac8180a6996a5547ba1663-ac5947e64456cc5842a34f4ce05e4380'
headers = {'Connection': 'Keep-Alive','Accept-Encoding': 'gzip,deflate','Authorization':'Bearer ' +access_token}
r = リクエスト.get (url,headers = ヘッダー、params=params)
price = r.json()
print(r.json())
print(price'prices'['instrument'].replace('_','/' ),':',round((price'prices'['ask']+price'prices'['bid'])/2,4),' ',price'prices'['time'])
print (price'prices'['instrument'].replace('_','/'),':',round((price'prices'['ask']+price'prices'['bid'])/ 2,4),' ',価格'価格'['時間'])
出:
{'prices': [{'bid': 1.09171, 'ask': 1.09184, 'instrument': 'EUR_USD', 'time': '2017-05-03T06:44:19.750556Z'}, { 'bid': 1.37203、'ask': 1.37219、'instrument': 'USD_CAD'、'time': '2017-05-03T06:44:19.738338Z'}]}
EUR/USD : 1.0918 2017-05-03T06 :44:19.750556Z
USD/CAD : 1.3721 2017-05-03T06:44:19.738338Z
漂亮男人2017-05-18 10:57:43
これは技術的な問題ではありません。API がこの機能を提供しているかどうかを確認する必要があります。2 つを同時に取得する機能が提供されていない場合は、それらを個別に取得してから結合するしかありません。