如何从GDAX websocket Feed获得实时出价/询价/价格

时间:2017-08-07 09:14:31

标签: coinbase-api gdax-api

API文档不鼓励在blob._gpu_diff_ptr端点上进行轮询,并建议使用websocket流来监听匹配消息

但匹配响应仅提供/tickerprice(卖/买)

如何从websocket Feed中重新创建股票代码数据(价格,要价和出价)?

side

{ “price”: “333.99”, “size”: “0.193”, “bid”: “333.98”, “ask”: “333.99”, “volume”: “5957.11914015”, “time”: “2015-11-14T20:46:03.511254Z” } 端点和websocket feed都返回'price',但我猜它不一样。来自ticker端点的price是否会随着时间的推移出现某种平均值?

如何计算ticker值,Bid值?

1 个答案:

答案 0 :(得分:15)

如果我在 subscribe 消息中使用这些参数:

params = {
    "type": "subscribe",
    "channels": [{"name": "ticker", "product_ids": ["BTC-EUR"]}]
}

每次执行新交易(并在http://www.gdax.com上可见),我都会从网络套接字获得此类消息:

{
 u'best_ask': u'3040.01',
 u'best_bid': u'3040',
 u'last_size': u'0.10000000',
 u'price': u'3040.00000000',
 u'product_id': u'BTC-EUR',
 u'sequence': 2520531767,
 u'side': u'sell',
 u'time': u'2017-09-16T16:16:30.089000Z',
 u'trade_id': 4138962,
 u'type': u'ticker'
}

在此特定消息之后,我在https://api.gdax.com/products/BTC-EUR/ticker上做了 get ,我得到了这个:

{
  "trade_id": 4138962,
  "price": "3040.00000000",
  "size": "0.10000000",
  "bid": "3040",
  "ask": "3040.01",
  "volume": "4121.15959844",
  "time": "2017-09-16T16:16:30.089000Z"
}

get 请求相比,Web套接字中的当前数据相同。

请在下面找到一个完整的测试脚本,该脚本使用此代码实现Web套接字。

#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""Test for websockets."""

from websocket import WebSocketApp
from json import dumps, loads
from pprint import pprint

URL = "wss://ws-feed.gdax.com"


def on_message(_, message):
    """Callback executed when a message comes.

    Positional argument:
    message -- The message itself (string)
    """
    pprint(loads(message))
    print


def on_open(socket):
    """Callback executed at socket opening.

    Keyword argument:
    socket -- The websocket itself
    """

    params = {
        "type": "subscribe",
        "channels": [{"name": "ticker", "product_ids": ["BTC-EUR"]}]
    }
    socket.send(dumps(params))


def main():
    """Main function."""
    ws = WebSocketApp(URL, on_open=on_open, on_message=on_message)
    ws.run_forever()


if __name__ == '__main__':
    main()