Skip to content

Latest commit

 

History

History
49 lines (28 loc) · 1.99 KB

installing_gekko.md

File metadata and controls

49 lines (28 loc) · 1.99 KB

Installing Gekko

Here is a video of me explaining how to install Gekko the easiest way possible:

screen shot 2017-04-20 at 00 03 45

To get Gekko running you need to do the following:

  • install nodejs
  • download Gekko
  • install Gekko's dependencies

Installing nodejs

Gekko requires nodejs to be installed. Go ahead and install this if it's not already (Gekko requires at least version 6). We advice to download the current LTS.

Downloading Gekko

The recommanded way of downloading Gekko is by using git. This makes keeping Gekko updated a lot easier. For git, run this in a terminal:

git clone git://github.com/askmike/gekko.git
cd gekko

Alternatively download and extract the zip here.

Installing Gekko dependencies

Once it is installed we need to install Gekko's dependencies, open your terminal and navigate to the gekko folder and run:

npm install --only=production

Starting Gekko

After all the above you can start Gekko by running the following in your terminal:

node gekko --ui

Updating Gekko

If you installed Gekko via git, simply run:

git pull
npm install --only=production

If you downloaded the zip you can just download the new version. If you want to move historical data over (for backtesting purposes), copy the constents of the history folder found inside the gekko folder. If you have written your own strategies, don't forget to move them over as well.