You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi
in my EA MT5 there are differents indicators and everyone can to be false or true.
There are two CCI.
Every CCI have setup for line buy and setup for line sell.
If CCI line cross linebuy... buy
If CCI line cross linesell... sell
Is correct this ? :
if(cci(InpCCIPeriod2)>CCI2LineValueBuy && UseCCI1==true){buy++;}
if(cci(InpCCIPeriod)>CCI1LineValueBuy && UseCCI2==true){buy++;}
thank you