sebwelch:
Hi,
I am trying to code and EA that identifies three or more bull/bear candles in a row.
I am having trouble trying to plan it out and code it.
Any help will be greatly appreciated
Thank you in advance
if(Open[3]<Close[3] && Open[2]<Close[2] && Open[1]<Close[1]) //3 bulls { } if(Open[3]>Close[3] && Open[2]>Close[2] && Open[1]>Close[1]) //3 bears { }Alternatively, write a loop.
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,
I am trying to code and EA that identifies three or more bull/bear candles in a row.
I am having trouble trying to plan it out and code it.
Any help will be greatly appreciated
Thank you in advance