Update adding-new-exchange.md

This commit is contained in:
Yo-An Lin 2022-09-24 01:50:16 +08:00 committed by GitHub
parent bfc4cc0db1
commit 53fef0e4d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ requests.
## Checklist ## Checklist
Exchange Interface - the minimum requirement for spot trading Exchange Interface - (required) the minimum requirement for spot trading
- [ ] QueryMarkets - [ ] QueryMarkets
- [ ] QueryTickers - [ ] QueryTickers
@ -29,11 +29,11 @@ Order Query Service Interface - (optional) used for querying order status
- [ ] QueryOrder - [ ] QueryOrder
Back-testing service - kline data is used for back-testing Back-testing service - (optional, required by backtesting) kline data is used for back-testing
- [ ] QueryKLines - [ ] QueryKLines
Convert functions: Convert functions (required):
- [ ] MarketData convert functions - [ ] MarketData convert functions
- [ ] toGlobalMarket - [ ] toGlobalMarket
@ -54,16 +54,16 @@ Stream
- [ ] Balance message parser - [ ] Balance message parser
- [ ] MarketDataStream - [ ] MarketDataStream
- [ ] OrderBook message parser (or depth) - [ ] OrderBook message parser (or depth)
- [ ] KLine message parser (required for backtesting) - [ ] KLine message parser (required for backtesting and strategy)
- [ ] Public trade message parser (optional) - [ ] Public trade message parser (optional)
- [ ] Ticker message parser (optional) - [ ] Ticker message parser (optional)
- [ ] ping/pong handling. - [ ] ping/pong handling. (you can reuse the existing types.StandardStream)
- [ ] heart-beat hanlding or keep-alive handling. - [ ] heart-beat hanlding or keep-alive handling. (already included in types.StandardStream)
- [ ] handling reconnect - [ ] handling reconnect. (already included in types.StandardStream)
Database Database
- [ ] Add a new kline table for the exchange (this is required for back-testing) - [ ] Add a new kline table for the exchange (required for back-testing)
- [ ] Add MySQL migration SQL - [ ] Add MySQL migration SQL
- [ ] Add SQLite migration SQL - [ ] Add SQLite migration SQL