Changing TMA Slope indicator by Nicolas to appear on candle sticks!!

Forums ProRealTime English forum ProBuilder support Changing TMA Slope indicator by Nicolas to appear on candle sticks!!

Tagged: , ,

Viewing 15 posts - 1 through 15 (of 22 total)
  • #87631

    Regarding TMA Slope indicator by Nicolas!!

    https://www.prorealcode.com/prorealtime-indicators/tma-slope/

    Think this indicator will work amazingly on candlesticks itself.. So I was wondering rather than using it as a separate indicator if we can make the indicator work on candlesticks itself would be great!! ie: when indicator change colours.. candles go green, dark green, red, dark red and purple and blue etc..!!

    Just have a kind request if anyone can make this possible??

    Thank you in advance

    R

    #88141

    This modified version below color the candlesticks depending of the slope of the TMA.

     

    #88197

    Hi Nicolas,
    This is brilliant.. Thank you very very much!
    I have tried to add variables to this but it doesn’t seem to work for some reason.. Please will you be able to check this to see what’s wrong?

    #88222

    If you want to add the settings as extern ones, you must delete or comment the ones in the code between lines 9 to 12. Delete these lines or add REM (or //) before them.

    #88265

    Thanks again Nicolas.. Managed to get it right!!

    Is there anyway to add up to identify open and close price?
    ie: if a down candle – candle close below open price to go very darker darker colour – according to this it will go green on an up trend but on that trend down candle to go darker green and if a down trend to go other way around??

     

     

    #88296

    ok but then it does nothing to deal with the TMA “slope” anymore? How do you identify the current trend?

    #88319

    Hi Nicolas,

    what i mean by the trend is.. according to the original indicator ”“Buy Only” or “Sell only”
    to identify the open and close price in the candles.. ie: if its Buy only now all candles will go green and can’t find the open and the close price so if its “Buy Only” price close below open price to go darker green or any other way to find the open and close price??

    Sorry if i’m making it complicated…

    #88324

    Well, this is a new version, candlesticks are coloured depending of if they are bullish/bearish and with a condition made of the slope above or below the High1 and Low1 levels. They are grey when ranging.

     

    1 user thanked author for this post.
    #88502

    This is great.. thank you Nicolas!!

    #89008

    Hi Nicolas,
    I have managed to change the last two colour into pick and blue according to the original indicator instead of all white!! is there a way to make it dark pick and dark blue.. just to identify the close open price.. exactly like you did to buy only and sell only!!!
    sorry I’m asking loads here… this is the last thing i’m asking… i cant get this right and 🙁 try to add up but getting an error!!

    #89397

    ???

    #89400

    Maybe this will help https://www.prorealcode.com/wp-content/uploads/2015/09/P1jHlnG.jpg ?

    1 user thanked author for this post.
    #89413

    !!!

    1 user thanked author for this post.
    #89483

    Hi it just the last area that i’m trying to make…

    Pick colour to go dark pink if close above open price
    Blue to go dark blue if close below open price.

    if(gadblSlope[0] < gadblSlope[1]) then
    if(close < open) then
    drawcandle(open,high,low,close)coloured(255,105,180)
    else
    drawcandle(open,high,low,close)coloured(128,0,128)

    endif
    if(gadblSlope[0] > gadblSlope[1]) then
    if(close < open) then
    drawcandle(open,high,low,close)coloured(32,178,170)
    else
    drawcandle(open,high,low,close)coloured(0,0,205)

    #89847

    ??

Viewing 15 posts - 1 through 15 (of 22 total)

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