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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
//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) |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
hi sir is this indicator for mt4 and how i can get one .