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