07-17-2018, 03:02 AM
Gekko does not work with any normalized functions to import data because all exchanges have very different implementations. So if you add an exchange normally users are only able to:
- watch the realtime function (gekko will poll getTrades and build candles)
- do live trading (by creating and managing orders)
importing goes via an "importer" implementation found here: https://github.com/askmike/gekko/tree/de.../exchanges
Very open to this, we just have to make sure that we can get all data Gekko already stores as part of candles, they are:
- open / high / low / close (standard candle)
- vwp
- # trades
I am not 100% sure what you mean. The API of the exchange? In that case unfortunately Gekko won't import on that exchange.
- watch the realtime function (gekko will poll getTrades and build candles)
- do live trading (by creating and managing orders)
importing goes via an "importer" implementation found here: https://github.com/askmike/gekko/tree/de.../exchanges
Quote:Did anyone implemented an universal importer taking history data from coinmarketcap for examble?
Very open to this, we just have to make sure that we can get all data Gekko already stores as part of candles, they are:
- open / high / low / close (standard candle)
- vwp
- # trades
Quote:Today I added HuobiPro and OKEX support to Gekko, watching the market goes fine but during history --import implementation it seems, the API is not exposing trade history. Or at least not more than the last 2000 trades. Am I missing something?
I am not 100% sure what you mean. The API of the exchange? In that case unfortunately Gekko won't import on that exchange.