mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
26 lines
617 B
Python
26 lines
617 B
Python
import click
|
|
from loguru import logger
|
|
|
|
from bbgo import MarketService
|
|
from bbgo.data import Subscription
|
|
from bbgo.enums import ChannelType
|
|
from bbgo.enums import DepthType
|
|
|
|
|
|
@click.command()
|
|
@click.option('--host', default='127.0.0.1')
|
|
@click.option('--port', default=50051)
|
|
def main(host, port):
|
|
subscriptions = [
|
|
Subscription('binance', ChannelType.BOOK, symbol='BTCUSDT', depth=DepthType.FULL),
|
|
]
|
|
|
|
service = MarketService(host, port)
|
|
response_iter = service.subscribe(subscriptions)
|
|
for response in response_iter:
|
|
logger.info(response)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|