Post
Topic
Board Trading Discussion
Re: Gekko - a javascript trading bot and backtesting platform
by
kuzetsa
on 18/11/2014, 21:32:38 UTC
also when we wanna update this script from github what is the command to do that in console?

Here's an example of the remote tracked repositories (on github) I've been using for development of my own fork...

Code:
kuzetsa@yurizoku ~/gitstuffs/gekko $ git remote -v
dowjames        https://github.com/dowjames/gekko.git (fetch)
dowjames        https://github.com/dowjames/gekko.git (push)
gekko   https://github.com/askmike/gekko.git (fetch)
gekko   https://github.com/askmike/gekko.git (push)
origin  git@github.com:kuzetsa/gekko.git (fetch)
origin  git@github.com:kuzetsa/gekko.git (push)
kuzetsa@yurizoku ~/gitstuffs/gekko $ git pull origin HEAD:master
Already up-to-date.

^ That "pull" command in the example would fetch the latest version from my own fork.

WARNING:

If you do something like that you're pulling the version from the repository and overwriting whatever you have locally. This will overwrite your config.js and probably shouldn't be used on a live gekko installation (running OR stopped, either one is bad and it doesn't matter which) unless you know how to use git well enough to disable synchronization of certain files...

Your best bet is probably just to download a ZIP from here:

https://github.com/kuzetsa/gekko/releases

Or alternatively, one of askmike's:

https://github.com/askmike/gekko/releases

... oh, that's weird. There aren't any releases / tags in there for some reason.



...Actually it looks like he's back, and maybe even accepting pull requests?

https://github.com/askmike/gekko/commits/master

^ maybe he's working on it again.

...I don't know?