Retracement&Extensions_kijun.tenkan.rsi

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #97478 quote
    Manuel9z
    Participant
    Average

    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
    Drive_kijun_1.itf Kijun-Tenkan-X.itf probacktestdax-h-155672379784pcl.png probacktestdax-h-155672379784pcl.png
    #98147 quote
    jebus89
    Participant
    Master

    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.

    ich.png ich.png
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

Retracement&Extensions_kijun.tenkan.rsi


ProOrder: Automated Strategies & Backtesting

New Reply
Author
author-avatar
Manuel9z @manuel9z Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by jebus89
6 years, 9 months ago.

Topic Details
Forum: ProOrder: Automated Strategies & Backtesting
Language: English
Started: 05/10/2019
Status: Active
Attachments: 4 files
Logo Logo
Loading...