I want to have nicolas' BB MACD CCT indicator converted to Easylanguage.

Forums ProRealTime English forum ProBuilder support I want to have nicolas' BB MACD CCT indicator converted to Easylanguage.

Viewing 3 posts - 1 through 3 (of 3 total)
  • #118903

    Hello, I have come across nicolas’ BB MACD CCT indicator and immediately it caught my attention.

    I having trouble converting nicolas’ BB MACD CCT indicator to Tradestation Easylanguage.

    Thank you nicolas for sharing this great indicator.

    The prorealcode script is as follows…

     

    ——————————————————————————————————————————————————–
    //PRC_BB MACD CCT | indicator
    //16.10.2017
    //Sharing ProRealTime knowledge
    //converted from MT4 version
    // — settings
    //FastLen = 38
    //SlowLen = 120
    //Length = 20
    //StDv = 1.1
    // — end of settings
    bbMacd = average[FastLen,1]average[SlowLen,1]
    avg = average[Length,1](bbMacd)
    sDev = std[Length](bbMacd)
    UpperBand = avg+(StDv*sDev)
    LowerBand = avg(StDv*sDev)
    if bbMacd>bbMacd[1] then
    r=0
    b=205
    else
    r=255
    b=0
    endif
    drawtext(“●”,barindex,bbMacd,Dialog,Bold,10) coloured(r,0,b)
    return UpperBand coloured(0,0,205) style(line), LowerBand coloured(255,0,0) style (line)

     

    It would be greatly appreciated if brilliant minds could help me out.

    Thanks in advance.

    Best regards

    JS

     

    #118915

    This forum is dedicated to the ProRealTime platform only.

    For other platforms please use the paid services at https://www.prorealcode.com/trading-programming-services/.

     

    #118951

    okay

    thank you for letting me know

     

Viewing 3 posts - 1 through 3 (of 3 total)

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