12-22-2018, 03:14 PM
Gekko by itself is focussed on trading on one market. So this functionality is not part of Gekko.
You can definitely do this but you need get your hands dirty. Gekko comes with a CLI interface and a REST server so you can easily start and stop a Gekko on a specific market. See here: https://gekko.wizb.it/docs/internals/ser...startGekko
However:
> monitor the top 3 performers on Binance (highest 24 hour rise in price). If one of the coins meets my requirements (very simple requirements), Gekko will auto start my trading strategy for that coin, otherwise it will remain idle and continue to monitor.
This functionality doesn't exist so you would need to script that yourself. Very simply said you can create a little script that does:
- check all binance markets
- figure out top markets (however you want to calculate that is up to you)
- figure out what gekkos you want to run
- stop all the other ones, start the ones you want via the API described above.
Quote:Is this possible? and if so could you point me in the right direction. I don't mind a challenge if it will be difficult to achieve.
You can definitely do this but you need get your hands dirty. Gekko comes with a CLI interface and a REST server so you can easily start and stop a Gekko on a specific market. See here: https://gekko.wizb.it/docs/internals/ser...startGekko
However:
> monitor the top 3 performers on Binance (highest 24 hour rise in price). If one of the coins meets my requirements (very simple requirements), Gekko will auto start my trading strategy for that coin, otherwise it will remain idle and continue to monitor.
This functionality doesn't exist so you would need to script that yourself. Very simply said you can create a little script that does:
- check all binance markets
- figure out top markets (however you want to calculate that is up to you)
- figure out what gekkos you want to run
- stop all the other ones, start the ones you want via the API described above.