fix
logo

"Lowest Margin Seen in %" as custom optimization criterion

Avatar
  • updated
  • Completed
When I optimize my EAs, I tend to use the "Lowest Margin Seen in %" as an optimization criterion, as the drawdown does not always reflect how close the setting is from blowing up the account (margin call).

Could you add an extra value in the DropDown menu, and the following piece of code (or similar) to allow exporting the "Lowest Margin Seen in %" during the backtest as the OnTester return value?

cp-margin-level-min.png

During the backtests, MT4/MT5 store this information in the variable "TesterStatistics(STAT_MIN_MARGINLEVEL)", see readme here

So that's an example of code that I use in my EAs:

=====

double OnTester() {
<...> // existing code
  else if (InpEquityRecorderType == 2) // or any other enum integer that would match the value in the dropdown menu
      return (TesterStatistics(STAT_MIN_MARGINLEVEL));
  }
}

=====


Thanks !

Avatar
0
tib

A 80% win TP10, SL manual

Avatar
0
Andrey Khatimlianskyi
Quote from tib

A 80% win TP10, SL manual

Does “ SL manual” mean no SL at all? What's the point of self-deception?

Avatar
0
tib

yes no SL!

When a trade goes wrong direction, i try to recover manually myself by some tools, or use recovery systems.

Avatar
0
Andrey Khatimlianskyi
Quote from tib

yes no SL!

When a trade goes wrong direction, i try to recover manually myself by some tools, or use recovery systems.

Do you close trades by some signal?
What's the point in optimization by WinRatio without SL