Reply

MT5 – how to turn off VERBOSE + INFOPANEL at Backtesting?

1 replies

Csaba

Customer, bbp_participant, community, sq-ultimate, 110 replies.

Visit profile

4 years ago #255373

Hello

I could turn off VERBOSE and INFOPANEL at backtesting in MT4.
But how could I do the same in MT5?

Thank for the answers.

Best regards
Csaba

0

tomas262

Administrator, sq-ultimate, 2 replies.

Visit profile

4 years ago #255418

Hello,

to disable ‘Verbose mode’ you can edit the source code and change this
int sqVerboseMode = 1;

into this
int sqVerboseMode = 0;

or you can make it an EA input like this
input int sqVerboseMode = 1;

Values used are: 0 – no logging, 1 – logging into the log, 2 – logging into the log file

0

Viewing 1 replies (of 1 total)