[SHARE] GAB - Gekko Automated Backtests - 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: [SHARE] GAB - Gekko Automated Backtests (/thread-56589.html) |
RE: [SHARE] GAB - Gekko Automated Backtests - Kris191 - 04-08-2018 Hi tommie, As mentioned before i'm not skilled enough for webserver and php coding, is there a way for me to run this locally and minimise setup? I have gekko running on a VPS at the moment without the UI. I really need to narrow down my strat parameters and currently i'm using tradingview with a coded bull_bear_adx backtester (not coded by me btw) RE: [SHARE] GAB - Gekko Automated Backtests - tommiehansen - 04-08-2018 (04-08-2018, 04:43 PM)Kris191 Wrote: Hi tommie, Minimize setup? Not really, it requires what it requires. But if you got Windows 10 or run any Linux dist you could just install apache and php, it isn't really heavy in the sense i think you mean. For WSL (Windows Linux Subsystem) use this guide and replace anything 7.1 with 7.2: https://medium.com/@magyarandrasistvan/setup-a-php-development-environment-on-windows-subsystem-for-linux-wsl-9193ff28ae83 ..but skip stuff like phpMyAdmin and MariaDB if you do not want to use that. Also don't use port 80 @ apache, choose some other port so that your stuff resides within e.g. http://localhost:8899/gab/ and not http://localhost:80/gab/ since :80 could be used by something else on your system. It becomes quite simple to start/end since you just run bash in Windows and do apachectl start anytime you wish to start it. It's also lightweight. RE: [SHARE] GAB - Gekko Automated Backtests - Kris191 - 04-08-2018 Thanks Tommie i will give it a go. currently kunbuntu on the VPS so will see how i do. Thank you RE: [SHARE] GAB - Gekko Automated Backtests - timvang - 04-09-2018 (04-08-2018, 12:41 PM)tommiehansen Wrote:(04-08-2018, 03:15 AM)timvang Wrote: Hi Tommie, Thanks Tommie! When I ran in DEBUG mode, I saw the parameters changed according to the configurations. I did not see the error reported in the debug mode, but did not see the test result after the test stopped running. I got the same error when I ran your RSI BULL/BEAR ADX strategy. I saw the same error even when I did not setup any dynamic parameters for the test Another question: Does 'Completed" in the log below show the number of completed test runs with different configurations? STATUS Running with 1 threads COMPLETED 0 DURATION 0h 0m 0s If I don't set any dynamic parameter for my test, would I expect to see 1 test completed? Thanks! RE: [SHARE] GAB - Gekko Automated Backtests - tommiehansen - 04-09-2018 (04-09-2018, 12:12 AM)timvang Wrote:(04-08-2018, 12:41 PM)tommiehansen Wrote:(04-08-2018, 03:15 AM)timvang Wrote: .. Yes, i've sent you a PM. - Yes, Completed = total runs completed. No, if you don't set any parameters it will count all the way up to 100 since a 'run' is considered a finished POST request and if you have no dynamic parameters you will basically get 1 *REAL* run + 100 "have already ran this, so exiting...". Those 100 are still runs that get executed though so they are still considered 'runs' even though they hold little value. 100 is the current max "have already ran this...." messages before GAB auto-stops everything (this is a security measure to not let GAB run forever if something unexpected happens on the server etc). This is sort of a non-problem when running for real though. RE: [SHARE] GAB - Gekko Automated Backtests - Kris191 - 04-09-2018 Right, Stupid question alert but i'm going to ask anyway... 1- do i pull the Git folder into my Gekko folder? 2 - i can see how i link this to the gekko UI , dose GAB load up when i run gekko UI or is there a command i need to run in the CLI Thanks RE: [SHARE] GAB - Gekko Automated Backtests - Kris191 - 04-10-2018 ive managed to get cli running not sure its working properly but he its not error-ing out however the ui link it posts says not found. i think this is due to where the folder is. can someone explain where the gab folder should live? Thanks RE: [SHARE] GAB - Gekko Automated Backtests - tommiehansen - 04-10-2018 I don't know or understand what you are running. There are no links outputted, you must refer to running something else. The GAB folder can live anywhere you'd like. A common option is where all your other www-stuff live. It does not have to be, or should be, under where you store Gekko. RE: [SHARE] GAB - Gekko Automated Backtests - Kris191 - 04-10-2018 (04-10-2018, 09:49 AM)tommiehansen Wrote: I don't know or understand what you are running. There are no links outputted, you must refer to running something else. I see, I have CLI running with GAB using just the sample setting for now, it seems to be working. I miss understood and thought i would need to stop it to get an output file but after re-reading the thread i will leave it till it finishes. if i get stuck i will post back in here but for now i think i have it sorted. RE: [SHARE] GAB - Gekko Automated Backtests - Kris191 - 04-10-2018 So i'm getting action the cli but after the time stamp i get a "not found". [EXEC: duration etc ] message in the terminal, is this working or is the not found going to be an issue for me?? the user.config file is point to gekko ui localhost and gekko is running as i'm getting the gab/system/post.php message in terminal. Am i missing something? |