BitcoinExchangeFH is a slim application to record the price depth and trades in various exchanges. You can set it up quickly and record the all the exchange data in a few minutes!
Users can
- Streaming market data to a target application (via ZeroMQ)
- Recording market data for backtesting and analysis.
- Recording market data to a in-memory database and other applications can quickly access to it.
- Customize the project for trading use.
All exchanges supported by ccxt. Currently more than 130 exchanges are supported.
Websocket feeds of the following exchanges are supported by cryptofeed
-
Bitfinex
-
Coinbase
-
Poloniex
-
Gemini
-
HitBTC
-
Bitstamp
-
BitMEX
-
Kraken
-
Binance
-
EXX
-
Huobi
-
OKCoin
-
OKEx
If the exchange is not supported with websocket API feed, it will automatically fall into using its REST API feed.
-
RDMBS (e.g. sqlite, MySQL, PostgreSQL)
-
ZeroMQ
-
Kdb+ (Coming soon)
pip install bitcoinexchangefh
bitcoinexchangefh --configuration example/configuration.yaml
The configuration follows YAML syntax and contains two sections
-
subscriptions
-
handlers
Subscription section specifies the exchange and instruments to subscribe.
The first key is the exchange name and then follows the exchange details,
-
instruments
-
number of depth (default is 5 if not specified)
For example,
subscription:
Binance:
instruments:
- XRP/BTC
- BCH/BTC
depth
Poloniex:
instruments:
- ETH/BTC
depth: 10
After receiving the order book or trade update, each handler is updated. For example, for SQL database handler, it is updated with the corresponding SQl statements.
For example,
handlers:
sql:
connection: "sqlite://"
The following settings can be customized
Parameter | Description |
---|---|
connection | Database connection string required by SQLAlchemy |
is_rotate | Boolean indicating whether to rotate to record the table. |
rotate_frequency | String in format same as strftime and strptime |
The feed handler acts as a publisher in ZeroMQ. To receive the feed, please follow ZeroMQ instructions to start a subscriber.
The following settings can be customized
Parameter | Description |
---|---|
connection | Connection format in ZeroMQ. For example, "tcp://127.0.0.1:3456" |
You can first look up to the page FAQ. For more inquiries, you can either leave it in issues or drop me an email. I will get you back as soon as possible.
The application is compatible with version higher or equal to python 3.0.
Always welcome for any contribution. Please fork the project, make the changes, and submit the merge request. :)
For any questions and comment, please feel free to contact me through email (gavincyi at gmail)
Your comment will be a huge contribution to the project!
If you are not satisified with python performance, you can contact me to discuss migrating the project into other languages, e.g. C++.