Just the classic CCI but with nice colors and use of drawcandle instruction for color fills.
Someone asked me to reproduce the look and feel of this indicator from another platform some here it is shared for everyone.
//PRC_CCI trend | indicator
//05.03.2019
//Nicolas @ www.prorealcode.com
//Sharing ProRealTime knowledge
// --- settings
period=14
// --- end of settings
icci = cci[period](typicalprice)
if icci>100 then
drawbarchart(0,icci,icci,0) coloured(0,130,250)
elsif icci>0 and icci<100 then
drawbarchart(0,icci,icci,0) coloured(0,80,120)
elsif icci<-100 then
drawbarchart(0,icci,icci,0) coloured(200,0,0)
else
drawbarchart(0,icci,icci,0) coloured(120,0,0)
endif
return icci coloured(255,255,255) style(line,2), 100 coloured(91,91,91) style(dottedline), -100 coloured(91,91,91) style(dottedline)