Hello,

I am searching for an EA to perform backtesting with this scenario

TF - h1
RSI - 21 (random )
lot dimensions - 0.01

BUY in the open of the next candle should RSI(21) closed below 30 level, and every time it occurs, using increment of of 0.01 for every achievement BUY
CLOSE all the open trades ONLY if RSI(21) reaches level 40 (flexible ).

SELL in the open of the next candle if RSI(21) closed above 70 level, and every time it occurs, using increment of of 0.01 for every achievement SELL
CLOSE all the open trades ONLY if RSI(21) reaches level 60 (flexible ).


LIMITED Manual testing appears to yield good results.

Anyone with programming ability wants to make a go for this please?



The increment of the lot size could be double up every activity, until we CLOSE all transactions
Or follow the FIBO arrangement of 0.01, 0.01, 0.02, 0.03, 0.05, 0.08 etc

For individual risk appetite, we can specify a limit on the amount of available trades, up to 3 only (maybe 4, 5, respectively )


The CLOSE all available transactions
- should RSI level reached
- or if total winnings of all trades equals 3% already



Thank you.