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 diff --git a/README.md b/README.md index 1d36cb0e33..f9940f8460 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/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/carlos8f/zenbot.git +git clone https://github.com/deviavir/zenbot.git ``` Or, without git, ``` -wget https://github.com/carlos8f/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/carlos8f/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/carlos8f/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/carlos8f/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/carlos8f/zenbot/master/assets/zenbot_square.png) +![zenbot logo](https://rawgit.com/deviavir/zenbot/master/assets/zenbot_square.png) Thanks! 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()