TrendDecoder Screener customization

Forums ProRealTime English forum General trading discussions TrendDecoder Screener customization

Viewing 9 posts - 1 through 9 (of 9 total)
  • #189155

    Hi there,

    I like this indicator and screener but I am looking for a special set-up on several timeframes:

    I would like to combine the screeners so that I have the same configuration of the price crossing down/up the RealTime Tradeline on 5MN,  15MN and 1Hour as shown in the picture;

    Anybody sees how to do that?

    Thanks in advance ^^

     

    This is the code : sorry but I cannot find the insert code button

     

    //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

    // change below with the desired signal type you want to detect with TrendDECODER:
    signalType = 3

    // adjust below the size and the liquidity of the assets you want to trade

    minPrice = close > 5
    minVol = volume > 1000

    // ===============================================

    data = CALL “TrendDecoder_datas”(close)
    test = data=signalType

    screener[test and minPrice and minVol](data as “signal type”)

     

    #189205

    Try  this one (not tested):

     

    2 users thanked author for this post.
    #189208

    Fantastic^^

    thanks a lot Roberto 😉

    #189231

    combine the screeners so that I have the same configuration of the price crossing down/up the RealTime Tradeline on 5MN, 15MN and 1Hour as shown in the picture;

    —————————–


    @Cryptoman
    ,

    Thanks for your initiative; this is surely a very interesting set up to maximize the probability of success;

    I will post here a few set ups that can help the community;

     


    @Robertogozzi
    @Nicolas

    I would like to open a thread on Prorealcode  where people can share their successful trades or less succesful ones (trading is about stats right 😉 and their strategies with TrendDecoder.

    is there any problem to do this on PRC ?

    Thanks

     

    #189232

    No worries 😉 I will subscribe to the thread!

    1 user thanked author for this post.
    #189233

    Whooooo I am honored 😉

    Thanks Nicolas

    #189235

    Perfect Kris!

     

    #202737

    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
    #202744
Viewing 9 posts - 1 through 9 (of 9 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login