Hello, I share with you this simple strategy based on impulses in Ichimoku tenkan-kijun lines trend. The indicator downloaded from PRC (Kijun-Tenkan-X) does not remember the author, -my apologies-. Actually, I have only activated it 10 days, with good results. To avoid optimization I share it to provide improvements: time frame 1h. Thank you
// Definición de los parámetros del código
DEFPARAM CumulateOrders = False // Acumulación de posiciones desactivada
// Condiciones para entrada de posiciones largas
indicator1 = RSI[4](close)
c1 = (indicator1 <= 20)
indicator2, indicator3 = CALL "Kijun Tenkan X"
c2 = (indicator2 > indicator3)
IF c1 AND c2 THEN
BUY 1 CONTRACT AT MARKET
ENDIF
// Condiciones de salida de posiciones largas
indicator4 = RSI[4](close)
c3 = (indicator4 >= 40)
IF c3 THEN
SELL AT MARKET
ENDIF
// Stops y objetivos
SET STOP %LOSS 0.25
SET TARGET %PROFIT 0.5
What market is the photo from? (google said dax)
Also ur photo says timeframe 30 minutes?
Edit: added photo of DAX 30m timeframe backtest 200K bars.