Attachments forums

List of attachments posted on this forum.


All files on forums: 136869

YO Forex Reverse Engineered

ionone, Wed Feb 21, 2024 8:34 pm

I reverse engineered the YoForexPro_fix EA (which is sold for $1K)
maybe you'll find a good set file
also it backtests much faster

I think it is close enough to the original, but if you find something strange let me know and i'll fix it

and here is the explanation for all the parameters (I added some parameters that were not in the original EA)

Code: Select all

invEntry : the EA uses the MA to enter. The logic will be inverted if this boolean is set to true

step : the step of the grid (in points)
TPProfit : the TP (in points)
restartMulAdd : the EA uses the biggest profit to close the biggest loss. This parameter sets how many multipliers it needs to roll back after such a close
for example the EA opened 0.01 then 0.02 then 0.03. It uses 0.03 profit to close 0.01 (which is in loss since the beginning). If restartMulAdd is set to 1, it will set next lot to 0.01 instead of continuying with 0.04

numMartiStart : this integer determines the number of trades before multiplying the lot size. For example, with a multilpier of 2.0, if you set to 3, lots will be :
0.01, 0.01, 0.01, THEN 0.02, 0.04, etc

mul = marti multiplier
pow_ = power of the lot
add = add of the lot (ex : if set to 1 then lots will be : 0.01, 0.02, 0.03, 0.04, etc)
mulMax = if the multiplier is above this number, the multiplier will stay at this number and not increase anymore (ex : if param set to 3 : 0.01, 0.02, 0.03, 0.03, 0.03, 0.03, etc)
numMaxMulCloseAll = if the multiplier is above this number, all trades will be closed
disclaimer : even if this EA is less dangerous than a normal marti, it is still very dangerous so use at your own risk
All files in topic