Thread: CCI Arrows
View Single Post
  #35 (permalink)  
Old 18th March 2010, 12:03
Default Avatar
AderFx AderFx is offline
Junior Member
 
Join Date: Mar 2010
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
Originally Posted by Enivid View Post
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 !!
Reply With Quote