forked from bmoscon/cryptofeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo_mongo.py
30 lines (24 loc) · 1.03 KB
/
demo_mongo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
'''
Copyright (C) 2017-2025 Bryant Moscon - [email protected]
Please see the LICENSE file for the terms and conditions
associated with this software.
'''
from cryptofeed import FeedHandler
from cryptofeed.backends.mongo import BookMongo, TradeMongo, TickerMongo
from cryptofeed.defines import L2_BOOK, TRADES, TICKER
from cryptofeed.exchanges import Coinbase
def main():
"""
Because periods cannot be in keys in documents in mongo, the bids and asks dictionaries
are converted to BSON. They will need to be decoded after being read
"""
f = FeedHandler()
f.add_feed(Coinbase(max_depth=10, channels=[L2_BOOK, TRADES, TICKER],
symbols=['BTC-USD'],
callbacks={TRADES: TradeMongo('coinbase', collection='trades'),
L2_BOOK: BookMongo('coinbase', collection='l2_book'),
TICKER: TickerMongo('coinbase', collection='ticker')
}))
f.run()
if __name__ == '__main__':
main()