Martingale Stochastic Indicator

Forums ProRealTime English forum General trading discussions Martingale Stochastic Indicator

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

    Hi Guys,

    I am looking for a

    Martingale Stochastic Indicator….does anyone has one they could share please or know where I can get one?

    Also interested in Martingale Trend line candles (Colour Change indication)

    Thanks in advance

    Steve

    #135421

    Sorry but I think you mixed “martingale” which is a kind of way to manage losing orders with different indicators names? So what you request for makes no sense..

    Could you explain more what you are looking for? Do you have example with screenshots maybe?

    #135429
    smp

    Hi Nicolas,

    I spotted this while watching Youtube and the reference was for this indicator!  He named it the Martin Stoch Indicator!

     

    regards,

    Steve

     

    #176553

    Hi, have a nice day 🙂
    I’ve been searching for this indicator for a few days, but unfortunately I still haven’t found it.
    I would like to share a screenshot to help. Would it be possible for us to find this indicator to use in Tradingview?

    #176556

    Hello, this look like premium indicators. Maybe you need to contact the author directly to get them.

     

    #176569

    This look like a rather classic Sotchastic indicator but with conditions to paint the background with different colors?

    #178410
    #178411

    Attached are screenshots of both the Sar and Martin trend.

    Both are identical, you just need to code the coloured candles from the Sar.

    The settings for the Sar are on the screenshot.

    #178415

    Please see the attached version for PRT.

    Includes the candles coloured for trend and arrows for each entry point. Based on code found on the PRC site.

    ACHAT = 0
    VENTE = 0

    PSAR = SAR[0.015,0.01,0.025]
    c1a = close > PSAR
    c1v = close < PSAR

    IF c1a THEN
    ACHAT = 1
    ENDIF

    IF c1v THEN
    VENTE = -1
    ENDIF

    if c1a and c1v[1] then
    DRAWARROWUP(barindex,low -5) coloured(0,204,153,255)
    ENDIF

    if c1a then
    DRAWCANDLE(open, high, low, close) Coloured (0,204,153)
    endif
    if c1v and c1a [1] then
    DRAWARROWDOWN(barindex,high +5) coloured(255,51,51,255)
    ENDIF
    if c1v then
    DRAWCANDLE(open, high, low, close) Coloured (255,51,51)
    endif

    RETURN ACHAT as “ACHAT”, VENTE as “VENTE”

     

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