Topic: Parameters not recognized
Hi!
Trying to leverage the power of the EG tool and parameterize it all my inputs to make a dynamic script. However, I seem to be having issues with parameters when creating my CMD file.
I've done a very simple version of my script here, where it seems that the validation part will not accept the "--use_data_start" parameter.
Can one of you help me with what I am doing wrong? Or should this just be done in a different way?
EDIT1: The input/output strings are not wrapped, it's just due to the size of the text box in the forum.
EDIT2: For the data start parameters, I tried both - and _ with same issue.
start cmd /k node .\bin\gen.js ^
--settings = GBPUSD_M1_GENERATE.ini ^
--output = ./collections/[SYMBOL]_[PERIOD]/Coll_[YEAR]-[MONTH]-[DAY]_[SYMBOL]_[PERIOD]_str_[COUNT].json ^
--server = Premium ^
--symbol = GBPUSD ^
--period = M5 ^
--use_data_start = true ^
--data-start = "12-07-2022 UTC" ^
--use-data-end = true ^
--data-end = "01-24-2023 UTC" ^
--min-count-of-trades = 100 ^
--max_working_minutes = 1
timeout 60
start cmd /k node .\bin\gen.js ^
--settings = GBPUSD_M1_GENERATE.ini ^
--input = ./collections/[SYMBOL]_[PERIOD]/ ^
--output = ./collections/[SYMBOL]_[PERIOD]/Coll_[YEAR]-[MONTH]-[DAY]_[SYMBOL]_[PERIOD]_str_[COUNT]_Validated.json ^
--min-count-of-trades = 5 ^
--server = Premium ^
--symbol = GBPUSD ^
--period = M5 ^
--use_data_start = true ^
--data-start = "01-25-2023 UTC"