UNPKG

8.04 kBJSONView Raw
1{
2 "name": "gekko",
3 "version": "0.0.4",
4 "description": "A bitcoin trading bot for auto trading at various exchanges",
5 "keywords": [
6 "trading",
7 "bot",
8 "bitcoin"
9 ],
10 "author": {
11 "name": "Mike van Rossum",
12 "email": "mike@mvr.me"
13 },
14 "dependencies": {
15 "mtgox-apiv2": "1.0.x",
16 "underscore": "1.4.x",
17 "moment": "2.0.x",
18 "btc-e": "0.0.x",
19 "bitcoincharts": "0.0.x",
20 "emailjs": "0.3.x",
21 "prompt-lite": "0.1.x",
22 "bitstamp": "0.0.x",
23 "async": "0.2.x",
24 "line-reader": "0.2.x"
25 },
26 "engines": {
27 "node": "0.10.x"
28 },
29 "repository": {
30 "type": "git",
31 "url": "https://github.com/askmike/gekko.git"
32 },
33 "readme": "# Gekko\n\n*The point is ladies and gentlemen that greed, for lack of a better word, is good.*\n\n![Gordon Gekko](http://mikevanrossum.nl/static/gekko.jpg)\n\n-Gordon Gekko\n\nGekko is a Bitcoin trading bot for popular exchanges written in javascript running on [nodejs](http://nodejs.org), it will feature multiple trading methods using technical analysis (at this moment it only knows EMA). It can monitor the live market or backtest strategies on historical data.\n\n## Main features\n\nGekko uses technical analysis (only EMA at this moment) to determine when to enter or leave the market, at such a moment it can:\n\n* Advice on what you should do (for example per email).\n* Calculate the profits of all the advices so far.\n* Automatically trade.\n\nGekko currently supports automatic trading at the following exchanges:\n* [Mt. Gox](https://mtgox.com/)\n* [BTC-e](https://btc-e.com/) (alpha stage)\n* [Bitstamp](https://bitstamp.net) (alpha stage)\n\n## What?\n\nThis project is a learning excercise of me, a student with *some* experience in programming (mostly web) and zero experience in economics and trading. I figured writing my own trade bot would be the best way to learn about implementing mathematical trading algorithms. So here is **my very first attempt at anything related to trading / algorithmic decision making**.\n\nI'm developing Gekko fully open source in the hope of getting feedback from folks with more experience in this field. Because I not only want to attract programmers I am doing my best to make the code as readable as possible, this includes a lot of comments and probably not the most efficient (but expressive) code.\n\nAs this is a learning experience for me all feedback is extremely appreciated. If you don't want to contribute to the code you can always just send me an [email](mailto:mike@mvr.me) or leave feedback in the [Gekko thread on the bitcointalk forum](https://bitcointalk.org/index.php?topic=209149.0).\n\n*Use Gekko at you own risk.*\n\n## Install\n\nWindows users? Here is a [step-by-step guide](https://github.com/askmike/gekko/blob/master/docs/installing_gekko_on_windows.md) on how to get Gekko running.\n\nGekko runs on [nodejs](http://nodejs.org/), once you have that installed you can either download all files in [a zip](https://github.com/askmike/gekko/archive/master.zip) or clone the repository via git:\n\n git clone git://github.com/askmike/gekko.git\n cd gekko\n\nYou need to download Gekko's dependencies, which can easily be done with [npm](http://npmjs.org):\n\n npm install\n\nTo change the settings, open up and edit [config.js](https://github.com/askmike/gekko/blob/master/config.js) to change the parameters. Check out doc on [Configuring Gekko](https://github.com/askmike/gekko/blob/master/docs/Configuring_gekko.md) where everything is explained in more detail.\n\nTo run the bot you just have to start Gekko:\n\n node gekko\n\nYou can also run Gekko silently, for examples on how to do this check out the [advanced features](https://github.com/askmike/gekko/blob/master/docs/Advanced_features.md).\n\nIf you installed the bot via git you can easily fetch the latest updates by running:\n\n git pull && npm update\n\n## What is Gekko doing?\n\nIf you started Gekko it will remain open in your terminal and log out new information, for example:\n\n start time: 2013-05-19 23:17:38\n\n I'm gonna make you rich, Bud Fox.\n Let me show you some Exponential Moving Averages.\n\n 2013-06-02 18:21:15 (INFO): ADVICE is to HOLD @ 117.465 (0.132)\n 2013-06-02 18:21:15 (INFO): (PROFIT REPORT) original balance: 207.465 USD\n 2013-06-02 18:21:15 (INFO): (PROFIT REPORT) current balance: 217.465 USD\n 2013-06-02 18:21:15 (INFO): (PROFIT REPORT) profit: 10.000 USD (4.820%)\n\nAfter the first fetching, every new interval (in the [config](https://github.com/askmike/gekko/blob/master/config.js#L17)) Gekko will fetch new trade data, advice on what to do and give a profit report:\n\n### Advice\n\n* HOLD means don't do anything, we are either not in a trend or the trend has not changed since last check.\n* BUY means the trend has changed to an uptrend, advice is to buy now so we can sell at the end of the trend.\n* SELL means the trend has chacnged to a downtrend, advice is to sell now so we can buy back at the end of the trend.\n\nAfter every line of advice we can see the current price Gekko calculated and the difference in EMAs, this makes it easier to understand the advice.\n\n### Profit report\n\nThe profit report will log out Gekko's profit since it started, this is done using a buy and sell simulations (regardless if you have automatic trading enabled or not). **The profit does not take fees into account.**\n\n*If Gekko logs 20% that means that if you would have had automatic trading enabled on an exchange account with a balance of 1BTC, you would now have 1.2BTC (minus the exchange fees for the trades).*\n\n### Buying and selling\n\nIf you configured Gekko to automatically sell on this information it will also log:\n\n* NOW going to BUY, when it is buying BTC.\n* NOW going to SELL, when it is selling BTC.\n\n## Backtesting\n\nGekko also supports backtesing strategies. For information on how to set Gekko up plase refer to [the document on backtesting](https://github.com/askmike/gekko/blob/master/docs/Backtesting.md).\n\n## TODO\n\n* Add more exchanges (such as [bitfloor](https://npmjs.org/package/bitfloor), [campBX](https://npmjs.org/package/campbx)).\n* Store trade history in levelDB.\n* Add money management (so that the bot will only spend a start amount of X and the profits on top of X).\n\n## Credits\n\n* The title is inspired by [Bateman](https://github.com/fearofcode/bateman).\n* This project is inspired by the [GoxTradingBot](https://github.com/virtimus/GoxTradingBot/) Chrome plugin (though no code is taken from it).\n\n## Final\n\nIf Gekko helped you in any way, you can always leave me a tip at (BTC) 13r1jyivitShUiv9FJvjLH7Nh1ZZptumwW\n\n## License\n\nThe MIT License (MIT)\n\nCopyright (c) 2013 Mike van Rossum <mike@mvr.me>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n",
34 "readmeFilename": "README.md",
35 "bugs": {
36 "url": "https://github.com/askmike/gekko/issues"
37 },
38 "homepage": "https://github.com/askmike/gekko",
39 "_id": "gekko@0.0.3",
40 "_from": "gekko@"
41}