├── .gitignore ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── components ├── backtester.js ├── configbuilder.js ├── garunner.js ├── logger.js └── strategyfinder.js ├── config ├── sample-config.js └── strategies.js ├── frontend ├── emitter.js ├── js │ ├── app.js │ └── components │ │ ├── table.js │ │ └── tablesort.js ├── router.js ├── sass │ ├── _layout.scss │ ├── _variables.scss │ ├── base.scss │ └── components │ │ ├── _configuration.scss │ │ └── table.scss ├── server.js ├── static │ ├── css │ │ ├── main.css │ │ └── main.css.map │ └── js │ │ └── app.js └── templates │ └── index.html ├── gruntfile.js ├── index.js ├── managers ├── backtestmanager.js ├── gekkomanager.js └── tradingmanager.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/.gitignore -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/README.md -------------------------------------------------------------------------------- /components/backtester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/components/backtester.js -------------------------------------------------------------------------------- /components/configbuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/components/configbuilder.js -------------------------------------------------------------------------------- /components/garunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/components/garunner.js -------------------------------------------------------------------------------- /components/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/components/logger.js -------------------------------------------------------------------------------- /components/strategyfinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/components/strategyfinder.js -------------------------------------------------------------------------------- /config/sample-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/config/sample-config.js -------------------------------------------------------------------------------- /config/strategies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/config/strategies.js -------------------------------------------------------------------------------- /frontend/emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/emitter.js -------------------------------------------------------------------------------- /frontend/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/js/app.js -------------------------------------------------------------------------------- /frontend/js/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/js/components/table.js -------------------------------------------------------------------------------- /frontend/js/components/tablesort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/js/components/tablesort.js -------------------------------------------------------------------------------- /frontend/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/router.js -------------------------------------------------------------------------------- /frontend/sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/sass/_layout.scss -------------------------------------------------------------------------------- /frontend/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/sass/_variables.scss -------------------------------------------------------------------------------- /frontend/sass/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/sass/base.scss -------------------------------------------------------------------------------- /frontend/sass/components/_configuration.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/sass/components/_configuration.scss -------------------------------------------------------------------------------- /frontend/sass/components/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/sass/components/table.scss -------------------------------------------------------------------------------- /frontend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/server.js -------------------------------------------------------------------------------- /frontend/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/static/css/main.css -------------------------------------------------------------------------------- /frontend/static/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/static/css/main.css.map -------------------------------------------------------------------------------- /frontend/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/static/js/app.js -------------------------------------------------------------------------------- /frontend/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/frontend/templates/index.html -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/gruntfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/index.js -------------------------------------------------------------------------------- /managers/backtestmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/managers/backtestmanager.js -------------------------------------------------------------------------------- /managers/gekkomanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/managers/gekkomanager.js -------------------------------------------------------------------------------- /managers/tradingmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/managers/tradingmanager.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DustinJSilk/reactive-trader/HEAD/package.json --------------------------------------------------------------------------------