Bruteforce node app - Printable Version +- Gekko Forum (https://forum.gekko.wizb.it) +-- Forum: Gekko (https://forum.gekko.wizb.it/forum-13.html) +--- Forum: Third Party Software (https://forum.gekko.wizb.it/forum-18.html) +--- Thread: Bruteforce node app (/thread-57099.html) |
Bruteforce node app - thegamecat - 05-04-2018 I really liked the Perl tool xffffffff wrote but it uses sqlite for a few things which caused me issues so I wrote my own bruteforce backtester in node. It's not elegant but it's pretty powerful and runs backtests in parallel across the Gekko API. From the read.me: Gekko Warez Bruteforce Backtester A swiss army nodejs brute force backtester for Gekko trading bot. Saves time so you can spend more time looking good. Here's what you can do:
git clone https://github.com/gekkowarez/bruteforce.git cd bruteforce npm install Setup: Open bruteforce.js and setup paths and configs from line 20. Instructions are in the doc. If you keep the resultCsv path the same make a "results" folder in the same place you installed the repo. To run: You must have the Gekko api server running so type the following into a console: node gekko --ui Then type the following to run the bruteforce app: node bruteforce.js https://github.com/gekkowarez/bruteforce RE: Bruteforce node app - Kris191 - 05-04-2018 Nice to see people building backtesting tools. How much power does this one need as Gekkoga is fairly lightweight others need a bit more juice RE: Bruteforce node app - thegamecat - 05-05-2018 This is just running as many different backtests as you tell it in parralel. It's fundamentally based on gekkoga, it is also not trying to find the ultimate combo, it will run forever. I use it as a pointer for new strategies rather than for pure optimization. For that I use gekkoga if I feel it's necessary. RE: Bruteforce node app - Kris191 - 05-05-2018 IF its like gekkoga but wil all combo print outs its a great little tool. i will give it a test this weekend. RE: Bruteforce node app - Kris191 - 05-06-2018 Morning thegamecat, Struggling to get this to work, i'm not a coder at all, its giving me a throw error but thats its. the only think i can think of is the following are not correct can you advise... //where are your gekko strategies? var strategiesFolder = 'Gekko\gekko\strategies'; //where is your config? - by config what do you mean? var configFile = 'Gekko\gekko\bruteforce\bruteforce.js'; RE: Bruteforce node app - susitronix - 05-06-2018 hi that looks good i try the perl version first but thanks alot very nice contribution RE: Bruteforce node app - thegamecat - 07-13-2018 (05-06-2018, 07:10 AM)Kris191 Wrote: Morning thegamecat, var strategiesFolder = '../gekko/strategies/'; //this is where your strats are var stratFilesPath = '../gekko/strategy_files/'; //I've started taking a copy of the strat at the start of each brute force so i can always find the strat that was responsible for good setting var configFile = '../gekko/config-backtester.js'; //this is your "normal" gekko config you use with cli var apiUrl= "http://localhost:3001"; |