Quote:
Originally Posted by AderFx
Hello Guys,
Thanks for sharing this excellent indicator !
I tried to change the value for the cross signal... default is "0" but... what I need to change if I want an arrow when it cross value of "70" ?
Thanks to you all !
Bye
|
You need to change "0" to "70" in the lines below in .mq4 file and then recompile:
MQL5 Code:
if(myCCInow>0 && myCCI2<0) //did it cross from below 50
MQL5 Code:
if(myCCInow<0 && myCCI2>0) //did it cross from above 50