負け組からみたFX

oandapy解説:get_orderbook() オーダーブックの取得

定義

get_orderbook( instrument, time=None )

引数

引数必須説明
instrument str商品名。ここでいう商品名とは通貨ペアのことを指す。
2つの通貨はアンダースコア(“_”)で区切る。
例:ドル円の場合は”USD_JPY”と指定。
timestrThe time of the snapshot to fetch.If not specified, then the most recent snapshot is fetched.

概要

オーダーブック(売買板)の情報 を取得します

復帰値

オーダーブックを辞書型で返却します

サンプルコード

API_KEY='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
ACCOUNT_ID='123-456-7890123-456'

# APIへ接続
con = oanda.APIv20(environment="live", access_token=API_KEY)

response = con.instrument.get_orderbook("USD_JPY")
orderbook = response.raw.json()

print(orderbook)

参照

OANDAのAPIの仕様は以下を参照してください。

http://developer.oanda.com/rest-live-v20/pricing-ep/

Comments are closed.