UNPKG

2.02 kBMarkdownView Raw
1# Installing Gekko on windows
2
3[Gekko](https://github.com/askmike/gekko/) is an open source Bitcoin trading bot which features multiple technical analysis trading methods. It can report advice or automatically trade at a number of Bitcoin exchanges. This guide will show you how to install Gekko on Windows.
4
5Before installing any software from the internet, it is always recommended to check the source. All of Gekko's source files are on its [Github repo](https://github.com/askmike/gekko/).
6
7*Note that Gekko runs on every platform that supports Nodejs, so you can install it on your pc (windows, OSX, linux, etc.), server or [quadrocopter](https://speakerdeck.com/felixge/node-dot-js-quadcopter-programming).*
8
9
10## Install nodejs
11
12Gekko runs on nodejs so we have to install that first. Head over the [nodejs homepage](http://nodejs.org/) and click on install. After downloading the installer will run, you can leave everything on default.
13
14## Install Gekko
15
16The easiest way to download Gekko is to go to the [Github repo](https://github.com/askmike/gekko) and click on the 'zip' button at the top. Once you have downloaded the zip file it's easiest to extract it to your Desktop. When you have done that we can begin with the cool stuff:
17
18### Open up command line
19
20Windows 7:
21
22* Start
23* Type in 'cmd.exe'
24* Press enter
25
26Pre-windows 7:
27
28* Start
29* Run
30* Type in 'cmd.exe'
31* Press enter
32
33### Install dependencies
34
35(After every command, press enter)
36
37First navigate to Gekko:
38
39 cd Desktop
40 cd gekko-master
41
42Install Gekko's dependencies:
43
44 npm install
45
46### Running Gekko
47
48In a command line navigated to Gekko type:
49
50 node gekko
51
52### Stopping Gekko
53
54In the command line hold `ctrl` + `c`.
55
56## Configure Gekko
57
58Use Windows Explorer to navigate to the `gekko-master` folder on your desktpop. Open `gekko.js` with a texteditor (like notepad) and check at [the repo](https://github.com/askmike/gekko#install) what settings you can change.
59
60After changing the settings you have to stop and start Gekko.
\No newline at end of file