gitextract_koczj845/ ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yaml ├── evaluation/ │ ├── __init__.py │ ├── benchmark/ │ │ ├── __init__.py │ │ ├── benchmark.py │ │ └── generateConfig.py │ └── gekko/ │ ├── API.py │ ├── __init__.py │ ├── backtest.py │ ├── dataset.py │ ├── datasetOperations.py │ └── statistics.py ├── exchangerun.csv ├── gekko_evolution.yml ├── japonicus/ │ ├── Settings.py │ ├── __init__.py │ ├── configIndicators.py │ ├── configStrategies.py │ ├── evolution_generations.py │ ├── halt.py │ ├── interface.py │ ├── japonicus.py │ └── options.py ├── japonicus-run ├── jlivetrader.py ├── livetrader/ │ ├── exchangeMonitor.py │ ├── gekkoChecker.py │ ├── gekkoTrigger.py │ ├── japonicusResultSelector.py │ └── strategyRanker.py ├── promoterz/ │ ├── README.md │ ├── TOMLutils.py │ ├── __init__.py │ ├── environment.py │ ├── evaluationBreak.py │ ├── evaluationPool.py │ ├── evolutionHooks.py │ ├── evolutionToolbox.py │ ├── functions.py │ ├── locale.py │ ├── logAnalysis.py │ ├── logger.py │ ├── metaPromoterz.py │ ├── parameterOperations.py │ ├── representation/ │ │ ├── Creator.py │ │ ├── chromosome.py │ │ ├── deapCreator.py │ │ └── oldschool.py │ ├── sequence/ │ │ ├── __init__.py │ │ ├── locale/ │ │ │ └── standard_loop.py │ │ └── world/ │ │ └── parallel_world.py │ ├── statistics.py │ ├── supplement/ │ │ ├── PRoFIGA.py │ │ ├── age.py │ │ └── phenotypicDivergence.py │ ├── validation.py │ ├── webServer/ │ │ ├── __init__.py │ │ ├── core.py │ │ ├── external_css_list.txt │ │ ├── graphs.py │ │ ├── layout.py │ │ └── promoterz_style.css │ └── world.py ├── requirements.txt ├── settings/ │ ├── _Global.toml │ ├── _backtest.toml │ ├── _bayesian.toml │ ├── _binance.toml │ ├── _dataset.toml │ ├── _evalbreak.toml │ └── _generation.toml ├── stratego/ │ ├── README.md │ ├── __init__.py │ ├── gekko_strategy.py │ ├── indicator_properties.py │ └── skeleton/ │ ├── dumbsum.js │ └── ontrend.js ├── strategy_parameters/ │ ├── BBRSI.toml │ ├── DUAL_RSI_BULL_BEAR.toml │ ├── HL_TS.toml │ ├── NEO.toml │ ├── NEObigjap.toml │ ├── PPO.toml │ ├── RBB_ADX2_BB.toml │ ├── RSI_BULL_BEAR.toml │ ├── RSI_BULL_BEAR_ADX.toml │ ├── RSI_BULL_BEAR_x2.toml │ ├── WRSI_BULL_BEAR.toml │ ├── foxhole.toml │ ├── griewangk.toml │ ├── quartic.toml │ ├── rastrigin.toml │ ├── rosenbrock.toml │ ├── scalperNEO.toml │ ├── scalperRBBA.toml │ └── schwefel.toml ├── utilities/ │ ├── importer.sh │ ├── poloUSDTBTC.js │ ├── poloUSDTETH.js │ └── poloUSDTLTC.js └── version.py