aaronpriest wrote:The .ini file doesn't have a ^ at the end of every line, only if you include those settings in your command. When calling those settings from the .ini file there isn't a caret. You can override any setting in the .ini file by including it your command instead, and if you do that you need a ^ at the end of every line in your command, to tell the command to continue on to the next line. I have my generic settings in my .ini file, but sometimes I override a specific setting for a particular pair or timeframe by including a different setting in the command line.
Thank you. Will keep in mind. Right now to be honest Lisa's post helped to speed up using Express Generator. Just needed to tune a bit with advice given thus far. You are also right the '/' or '\' not an issue.
I've replicated Lisa's advanced script with pair am interested to look at using the Premier data for time being.
Am also trialing Tick Data Manager from one of Lisa's video to do further optimization testing on tick data.
Attached image is where am at.
Script is following Lisa's one from one of her blog post.
start step2a_a_template EURUSD H1 "22 August 2021 00:00 GMT" "22 August 2023 00:00 GMT" Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template USDJPY H1 "22 August 2021 00:00 GMT" "22 August 2023 00:00 GMT" Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template GBPUSD H1 "22 August 2021 00:00 GMT" "22 August 2023 00:00 GMT" Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template BRENTCMDUSD H1 "22 August 2021 00:00 GMT" "22 August 2023 00:00 GMT" Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template USA500IDXUSD H1 "22 August 2021 00:00 GMT" "22 August 2023 00:00 GMT" Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template XAUUSD H1 "22 August 2021 00:00 GMT" "22 August 2023 00:00 GMT" Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
The template is from Lisa's blog post. The '\' works . So definitely was not an issue.
set symbol=%1
set period=%2
set startd=%3
set endd=%4
set ofile=%5
if "%symbol%" == "" EXIT
if "%period%" == "" EXIT
node .\bin\gen.js ^
--server Premium ^
--symbol %symbol% ^
--period %period% ^
--max-data-bars 200000 ^
--use_data_start true ^
--use_data_end true ^
--entry_lots 0.1 ^
--trade_direction_mode LongAndShort ^
--opposite_entry_signal IgnoreOrReverse ^
--stop_loss_usage AlwaysUse ^
--stop_loss_type Fixed ^
--stop_loss_range_min 10 ^
--stop_loss_range_max 100 ^
--take_profit_usage AlwaysUse ^
--take_profit_range_min 10 ^
--take_profit_range_max 100 ^
--max_entry_slots 4 ^
--max_exit_slots 2 ^
--min_count_of_trades 150 ^
--min_profit_factor 1.2 ^
--min_r_squared 10 ^
--max-working-minutes 600 ^
--enable_monte_carlo true ^
--ind_params_change_probability 20 ^
--account_currency USD ^
--initial_account 1000 ^
--leverage 400 ^
--collection-capacity 200 ^
--correlation_threshold 0.98 ^
--resolve_correlation true ^
--resolve_similar_rules true ^
--trade_on_sunday false ^
--output %ofile% ^
--data_start %startd% ^
--data_end %endd%
pause
Post's attachmentsPC-Activity-Sample-0.jpg 349.49 kb, file has never been downloaded.
You don't have the permssions to download the attachments of this post.