screener trend decoder

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #240009 quote
    Gio56
    Participant
    New

    Bonjour a tous,

    je possède l’indicateur trend decoder qui me convient parfaitement.

    je voudrez si possible un petit coups de main pour crée un screener selon les différentes configuration pour cette indicateur, mais je n’est aucune compétence en codage.

    si quelqu’un a ca en réserve avec les explications  je suis preneur.

    Merci d’avance a tous.

    #240019 quote
    Iván González
    Moderator
    Master

    Bonjour. Si vous me fournissez le code indicateur, je peux vous aider avec le screener.

    #240023 quote
    Gio56
    Participant
    New

    Merci pour ton aide Ivan. voici un des code de l’indicateur disponible sur le forum.

    // Screener TrendDECODER
    // Signal 1 : TrendUP H1
    // Signal 2 : TrendUP M15 and GreyBox in an M15 UpTrend
    
    //signalType details:
    // 1 = new bullish trend detected (from red to blue cloud)
    // -1 = new bearish trend detected (from blue to red cloud)
    // 2 = grey box during bullish trend
    // -2 = grey box during bearish trend
    // 3 = red trend line breakout
    // -3 = blue trend line breakout
    
    // adjust below the size and the liquidity of the assets you want to trade
    
    minPrice = close > 5
    minVol = summation[10](volume) > 2000
    
    // ===============================================
    timeframe (1H)
    data1, ignored, ignored, TrendLine1 = CALL “TrendDecoder_datas”(close)
    if data1 = 1 and data1[1]=0 then
    trend1=1
    endif
    if data1 = -1 then
    trend1=0
    endif
    testH1 = trend1 and Close > TrendLine1
    
    // ===============================================
    timeframe (15 minutes)
    data2, ignored, ignored, TrendLine2 = CALL “TrendDecoder_datas”(close)
    if data2 = 1 and data2[1]=0 then
    trend2=1
    endif
    if data2 = -1 then
    trend2=0
    endif
    testM15 = trend2 and Close > TrendLine2
    
    // ===============================================
    timeframe (5 minutes)
    data3, ignored, ignored, TrendLine3 = CALL “TrendDecoder_datas”(close)
    if data3 = 1 and data3[1]=0 then
    trend3=1
    endif
    if data3 = -1 then
    trend3=0
    endif
    testM5 = trend3 and Close > TrendLine3
    
    // ===============================================
    Timeframe (default)// M1
    ignored, ignored, ignored, TrendLine4 = CALL “TrendDecoder_datas”(close)
    testM1 = Close < TrendLine4
    
    screener[testM1 and testM5 and testM15 and testH1 and minPrice and minVol]

    Modifié par le modérateur en saisissant le code à l’aide du bouton « Ajouter un code d’outillage ». Pensez à faire de même dans vos prochains messages.

    je te joint également le message de la mise a jour du concepteur:

    Hi TrendDECODERS,

    After many requests, we have updated our backtest function.

    You now have the possibility to include Trailing Stop Loss values to make your exits thanks to the “TrailLong” and “TrailShort” variables which correspond respectively to the boundaries of the Blue and Orange Clouds;
    TrailLong is the farthest edge of the price and TrailShort the closest;

    Signals, TrailLong, TrailShort = CALL “TrendDecoder_datas”(close)

    The 6 values of the “Signals” variable are as follows:

    // 1 = new UP trend detected (from red cloud to blue cloud)
    // -1 = new DOWN trend detected (from blue cloud to red cloud)
    // 2 = GreyBOX during the uptrend
    // -2 = GreyBOX during a downtrend
    // 3 = break out of the red Realtime trendline
    // -3 = break out of the blue Realtime trendline

     

    You also have this post on Prorealcode that may help:
    https://www.prorealcode.com/topic/backtests-timeframe-multiple-avec-trenddecoder/page/2/#post-195391

    => Of course, you’ll have to replace the “TrendDecoder_datas” function in the code with the one above because we’ve enhanced it 😉

    Timeframe (15mn, updateonclose)
    Signal15 = CALL “TrendDecoder_datas”(close) => Signals15, TrailLong15, TrailShort15=CALL “TrendDecoder_datas”(close)
    NB: the function CALL “TrendDecoder_datas”(close) is a free bonus given on reques to TrendDECODER customers with identified licence

    je voudrais pouvoir le configurer de façon a détecter M15  en trend haussier et M5 en signal UP.

    et inversement pour la tendence baissière.

    encore un grand merci Ivan.

    #240029 quote
    Iván González
    Moderator
    Master

    Bonjour. Je n'ai pas la fonction "TrendDecoder_datas". D'après ce que je vois, il s'agit d'un indicateur payant MarketPlace, donc je ne pense pas qu'il soit éthique de le publier ici.

    #240031 quote
    Gio56
    Participant
    New

    Oui il s’agit d’un indicateur payant.
    se toute façon on ne peux l’utiliser sans la licence. Donc sa ne gêne en rien car en plus tout cela est déjà sur le forum.
    Je passe par là car le concepteur ne me répond pas à mes messages d’aide 🤷‍♂️.

    #240034 quote
    Iván González
    Moderator
    Master

    D'accord. Si vous obtenez le code de la fonction "TrendDecoder_datas", vous pouvez configurer le screener.

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

screener trend decoder


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
Gio56 @gio56 Participant
Summary

This topic contains 5 replies,
has 2 voices, and was last updated by Iván González
1 year, 3 months ago.

Topic Details
Forum: ProScreener : Scanners de Marché & Détection
Language: French
Started: 11/05/2024
Status: Active
Attachments: No files
Logo Logo
Loading...