Quote:
Originally Posted by Enivid
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
|
Hello,
Thanks for your help,
I tried with value "100" but seems not working correctly, blue arrow are correct but there is some red arrows that are not visible.
You know why?
My code:
MQL5 Code:
if(myCCInow>100 && myCCI2<100) //did it cross from below 50
MQL5 Code:
if(myCCInow<100 && myCCI2>100) //did it cross from above 50
Thank you !!