From 7e3e0e0c9ba648d1d3a112e536e843df8e556d43 Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Thu, 28 Dec 2017 15:36:04 +0100 Subject: [PATCH 1/4] Update README --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1d36cb0e33..d213b1d9d8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![zenbot logo](https://rawgit.com/carlos8f/zenbot/master/assets/logo.png) +![zenbot logo](https://rawgit.com/highvelocityspace/zenbot/master/assets/logo.png) > “To follow the path, look to the master, follow the master, walk with the master, see through the master, become the master.” > – Zen Proverb @@ -50,13 +50,13 @@ Zenbot is a command-line cryptocurrency trading bot using Node.js and MongoDB. I Run in your console, ``` -git clone https://github.com/carlos8f/zenbot.git +git clone https://github.com/highvelocityspace/zenbot.git ``` Or, without git, ``` -wget https://github.com/carlos8f/zenbot/archive/master.tar.gz +wget https://github.com/highvelocityspace/zenbot/archive/master.tar.gz tar -xf zenbot-master.tar.gz mv zenbot-master zenbot ``` @@ -93,7 +93,7 @@ sudo apt-get install build-essential mongodb -y curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - sudo apt-get install -y nodejs -git clone https://github.com/carlos8f/zenbot.git +git clone https://github.com/highvelocityspace/zenbot.git cd zenbot npm install @@ -470,7 +470,7 @@ c.order_adjust_time = 10000 ## Reading the console output -![console](https://rawgit.com/carlos8f/zenbot/master/assets/console.png) +![console](https://rawgit.com/highvelocityspace/zenbot/master/assets/console.png) From left to right: @@ -668,7 +668,7 @@ zenbot sell gdax.BTC-USD --pct=10 ## Chat with other Zenbot users -[![zenbot logo](https://rawgit.com/carlos8f/zenbot/master/assets/discord.png)](https://discord.gg/ZdAd2gP) +[![zenbot logo](https://rawgit.com/highvelocityspace/zenbot/master/assets/discord.png)](https://discord.gg/ZdAd2gP) Zenbot has a Discord chat! You can get in [through this invite link](https://discord.gg/ZdAd2gP). @@ -680,7 +680,7 @@ P.S., some have asked for how to donate to Zenbot development. I accept donation `187rmNSkSvehgcKpBunre6a5wA5hQQop6W` -![zenbot logo](https://rawgit.com/carlos8f/zenbot/master/assets/zenbot_square.png) +![zenbot logo](https://rawgit.com/highvelocityspace/zenbot/master/assets/zenbot_square.png) Thanks! From dddabd41bac61244d64ad5500228386d128045a4 Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Thu, 28 Dec 2017 16:15:32 +0100 Subject: [PATCH 2/4] Update README again --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d213b1d9d8..f9940f8460 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![zenbot logo](https://rawgit.com/highvelocityspace/zenbot/master/assets/logo.png) +![zenbot logo](https://rawgit.com/deviavir/zenbot/master/assets/logo.png) > “To follow the path, look to the master, follow the master, walk with the master, see through the master, become the master.” > – Zen Proverb @@ -50,13 +50,13 @@ Zenbot is a command-line cryptocurrency trading bot using Node.js and MongoDB. I Run in your console, ``` -git clone https://github.com/highvelocityspace/zenbot.git +git clone https://github.com/deviavir/zenbot.git ``` Or, without git, ``` -wget https://github.com/highvelocityspace/zenbot/archive/master.tar.gz +wget https://github.com/deviavir/zenbot/archive/master.tar.gz tar -xf zenbot-master.tar.gz mv zenbot-master zenbot ``` @@ -93,7 +93,7 @@ sudo apt-get install build-essential mongodb -y curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - sudo apt-get install -y nodejs -git clone https://github.com/highvelocityspace/zenbot.git +git clone https://github.com/deviavir/zenbot.git cd zenbot npm install @@ -470,7 +470,7 @@ c.order_adjust_time = 10000 ## Reading the console output -![console](https://rawgit.com/highvelocityspace/zenbot/master/assets/console.png) +![console](https://rawgit.com/deviavir/zenbot/master/assets/console.png) From left to right: @@ -668,7 +668,7 @@ zenbot sell gdax.BTC-USD --pct=10 ## Chat with other Zenbot users -[![zenbot logo](https://rawgit.com/highvelocityspace/zenbot/master/assets/discord.png)](https://discord.gg/ZdAd2gP) +[![zenbot logo](https://rawgit.com/deviavir/zenbot/master/assets/discord.png)](https://discord.gg/ZdAd2gP) Zenbot has a Discord chat! You can get in [through this invite link](https://discord.gg/ZdAd2gP). @@ -680,7 +680,7 @@ P.S., some have asked for how to donate to Zenbot development. I accept donation `187rmNSkSvehgcKpBunre6a5wA5hQQop6W` -![zenbot logo](https://rawgit.com/highvelocityspace/zenbot/master/assets/zenbot_square.png) +![zenbot logo](https://rawgit.com/deviavir/zenbot/master/assets/zenbot_square.png) Thanks! From a610a103824372db0667807c07ca2496f6fff98a Mon Sep 17 00:00:00 2001 From: kernelsndrs Date: Thu, 28 Dec 2017 15:41:23 -0500 Subject: [PATCH 3/4] add generation data to gitignore (#1012) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 47f62ebeca..816e9b0f84 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ sim_result* trade_result* *_test backtesting_* +generation_data_* models/*.json models/*.html *.pyc From 549562a2dcc03dc9249aafe4463825cde1102237 Mon Sep 17 00:00:00 2001 From: mkuendig Date: Mon, 1 Jan 2018 21:53:49 +1100 Subject: [PATCH 4/4] binance changed their API strategy from 24 hour windows to 1 hour. --- extensions/exchanges/binance/exchange.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/exchanges/binance/exchange.js b/extensions/exchanges/binance/exchange.js index ac8f4f7c03..d332f78104 100644 --- a/extensions/exchanges/binance/exchange.js +++ b/extensions/exchanges/binance/exchange.js @@ -64,11 +64,11 @@ module.exports = function container (get, set, clear) { } if (args.startTime && !args.endTime) { // add 12 hours - args.endTime = args.startTime + 43200000 + args.endTime = args.startTime + 3600000 } else if (args.endTime && !args.startTime) { // subtract 12 hours - args.startTime = args.endTime - 43200000 + args.startTime = args.endTime - 3600000 } var client = publicClient()