定義
get_orderbook( instrument, time=None )
引数
引数 | 型 | 必須 | 説明 |
instrument | str | ◯ | 商品名。ここでいう商品名とは通貨ペアのことを指す。 2つの通貨はアンダースコア(“_”)で区切る。 例:ドル円の場合は”USD_JPY”と指定。 |
time | str | The 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/