02-25-2018, 01:49 PM
(This post was last modified: 02-25-2018, 04:37 PM by ankasem.)
hi
I am using the ubuntu desktop
how can the trade bots work without problems
how to configure gekko ui and about the commandline
How to run two trade boots with two gekko in two stock exchanges
two Gekko installations were done
gekko1
gekko2
thank you
Two different exchanges shouldn't be a problem for gekko through the UI or command line - just add the different API keys and select the relevant exchange when you start the bot.
If you mean two different accounts on the same exchange:
Running the bots from the command line, you only need one copy of gekko, a config file for each bot (you can specify the api key to use in the config so can have different configs using different accounts on the same exchange). Start each bot with "pm2 start gekko.js -n "Name for this trading bot" -- --config /path/to/your/config.js"
If you want to trade through the UI you will need two separate copies of gekko, you will need to change the port of one of them - i.e. replace the port:3000 in web/vue/UIconfig.js with port:3001. Start them both either from terminal or in PM2 (preferred) and open two browser tabs, one to localhost:3000, the other to localhost:3001
02-26-2018, 10:27 AM
(This post was last modified: 02-26-2018, 10:28 AM by ankasem.)
hi
many thanks for the answersÂ