This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bring the recent commits to master down into unstable (#1048) * update products.json file to newest trading pairs at binance (#1028) * Binance changed API 24 hours to 1 hour (#1027) * Update README * Update README again * add generation data to gitignore (#1012) * binance changed their API strategy from 24 hour windows to 1 hour. * rename periodLength to period_length (#1035) * Change markup_pct to new markdown and markup, set commonArgs so it is included in all strategies, fix return. (#1047) The only other occurrence is in the readme file noting the legacy aspect. * Update darwin.js * Added support for dema-strategy to darwin.js (#1046) * fix bad escaping on output to console (#1045) * Update periodLength to underscore syntax for darwin * Missing | lead to bitwise operation being performed rather than an OR logical comparison. (#1053) * Console Output adjustment (#1055) * resolution to .csv & .json output (#1058) * resolution to .csv & .json output trogdor123 got me looking at the right section where the params were being input in json. made some minor tweaks to the code and now both are outputting correctly. * Update darwin.js ...changes - formatting. * darwin.js - crossover strategy (#1060) noticed that generational output was static from gen to gen for smalen1 and smalen2. sure enough, those are coded into the strategy itself, but were left out of the darwin.js strategy config for mutation. * Docker (#1061) * docker fix * Resolve docker build problems * noop strategy: readme/links/list (#1062) * Travis. Docker. (#1063) * Updated minimum required node version (#1066) It appears Zenbot wont work on anything before 8.3.0. Updating the minimum required version, for clarity. * Merge DemaStrats (#1067) fixes #1064 * v4.1.0: prepare release (#1068) * v4.1.0: prepare release * update package-lock.json
- Loading branch information
Showing
18 changed files
with
6,837 additions
and
1,824 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
language: node_js | ||
node_js: | ||
- "8" | ||
- "9" | ||
before_install: | ||
- rm -rf package-lock.json | ||
- npm install https://github.com/floatdrop/pinkie-promise.git | ||
- npm install -g node-gyp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
## Changelog | ||
|
||
- [v4.1.0](https://github.com/carlos8f/zenbot/releases/tag/v4.1.0) (Latest) | ||
- more indicators | ||
- more strategies | ||
- more exchanges | ||
- too many bug fixes to list here | ||
- web UI | ||
- Travis | ||
- Docker automated builds | ||
- Automated tests | ||
- [v4.0.5](https://github.com/carlos8f/zenbot/releases/tag/v4.0.5) | ||
- handle insufficient funds errors from gdax | ||
- new trend_ema defaults adjusted for latest btc movements: 20m period, neutral_rate=0 | ||
- include more data in sim output | ||
- remove rarely useful trend_ema options | ||
- avoid abort in trader on failed getTrades() | ||
- v4.0.4 | ||
- debugging for polo odd results | ||
- sim: simplify and correct makerFee assessment | ||
- fix conf path in API credentials errors | ||
- fix order total under 0.0001 error on polo | ||
- Docker: extend README slightly (thanks [@DeviaVir](https://github.com/deviavir) and [@egorbenko](https://github.com/egorbenko)) | ||
- docker-compose: do not expose mongodb by default! (thanks [@DeviaVir](https://github.com/deviavir)) | ||
- v4.0.3 | ||
- fix for docker mongo host error | ||
- link for new Discord chat! | ||
- fix polo crash on getOrder weird result | ||
- fix oversold_rsi trigger while in preroll | ||
- fix polo "not enough..." errors | ||
- fancy colors for price report | ||
- display product id in report | ||
- fix poloniex backfill batches too big, mongo timeouts | ||
- fix cursorTo() crash on some node installs | ||
- memDump for debugging order failures | ||
- fix column spacing on progress report | ||
- v4.0.2 | ||
- minor overhaul to trend_ema strat - added whipsaw filtering via std. deviation (`--neutral_rate=auto`) | ||
- trim preroll of sim result graph | ||
- v4.0.1 | ||
- Added .dockerignore (thanks [@sulphur](https://github.com/sulphur)) | ||
- fix crashing on mongo timeout during backfill | ||
- fix gaps in poloniex backfill | ||
- default backfill days 90 -> 14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
module.exports = { | ||
_ns: 'zenbot', | ||
|
||
'strategies.noop': require('./strategy') | ||
} | ||
'strategies.noop': require('./strategy'), | ||
'strategies.list[]': '#strategies.noop' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.