Libraries: SingleTesterCache - page 4

 
Мат. ожидание VS Комиссия
Мат. ожидание VS Комиссия
  • www.mql5.com
Очевидно, чем меньшую комиссию платите, тем вам выгоднее. Размер комиссии может зависеть от оборота и индивидуальных условий. Индивидуальные условия. Иногда торговые площадки готовы сделать
 
MFE/MAE, как пример исследования возможностей Робота на истории
MFE/MAE, как пример исследования возможностей Робота на истории
  • www.mql5.com
Из множества статистических данных анализа торговли выделим два - MFE и MAE. На картинке выше показаны их значения для всех позиций. MFE/MAE Каждая закрытая позиция имеет три параметра: OrderProfit -
 

b2980

SingleTesterCash .mqh stopped compiling.


TesterSettings.mqh in MultiTester also gives warnings.

Regards.

 
HimOrik:

b2980

SingleTesterCash .mqh stopped compiling.

In TypeToBytes.mqh, replace {0} with {} everywhere.

 
Thank you!
 
Library updated for the 505 version of the tst format. Partially guessed the changes. Tested on b3802.
 
fxsaber #:
Library has been updated for the 505 version of the tst format. Partially guessed the changes. Tested on b3802.

@fxsaber thanks for the update!

 

Is it possible to read tst file, delete deals with certain magis, then save back to the same file and see recalculated statistics without deleted deals in the tester?
Is it easier to do it via https://www.mql5.com/ru/code/18801?

Or is it better to run unnecessary for statistics trades through virtual tester https://www.mql5.com/ru/code/22577?

 
Forester #:

Is it possible to read tst file, delete deals with certain magiс, then save back to the same file and see recalculated statistics without deleted deals in the tester?

I may surprise you, but tst-file does not store magics (and milliseconds): orders, deals. The tst-file stores already calculated statistics. Therefore, any change of the trading history in the tst-file will not affect the statistics. Importing a tst-file into the Tester is only visualisation of the file contents, but not calculation.


Perhaps it is easier to do it via https://www.mql5.com/ru/code/18801?

Or is it better to run unnecessary transactions for statistics through the virtual tester https://www.mql5.com/ru/code/22577?

You can stuff tst into Virtual (either directly or via objects) and filter/feed it to the same Report or even to an already built CustomReport. You can feed Virtual to any third-party MQL4 code(example).

TesterReport - ощути всю мощь MT5-тестера в один клик!
TesterReport - ощути всю мощь MT5-тестера в один клик!
  • 2021.11.22
  • www.mql5.com
После MT4 идет неприятие MT5 из-за непонятной ордерной системы. Особенно это сказывается в Тестере стратегий: отчет MT4 интуитивно понятен, в отличие от MT5. По этой причине, когда заходит речь о
 
fxsaber #:

I may surprise you, but tst-file does not store majics (and milliseconds): orders, deals. The tst-file stores already calculated statistics. Therefore, any change of the trading history in the tst-file will not affect the statistics. Importing a tst-file into the Tester is only visualisation of the file contents, but not calculation.


You can stuff tst into Virtual (either directly or via objects) and filter/feed it to the same Report or even to an already built CustomReport. You can feed Virtual to any third-party MQL4 code(example).

Thank you. I decided to send trades unnecessary for the report to the virtual tester, and the necessary ones to the real one. I think this is the best option.