Edit Your Comment
Can You Help Me With This EA
Aug 23, 2017 at 07:04
(已編輯Aug 21, 2017 at 15:49)
會員從Aug 21, 2017開始
1帖子
Hello Everybody,
I am new here, I decided I would like to create an Expert Advisor. I am busy getting familiar with MQL5 and it is going great! I thought I would start of by creating a simple MA crossover EA, and so far so good.
**BUT**
The problem comes in when I need to open a trade.
I want my EA to only **BUY** if the candle stick after the MA cross _**closes**_ higher than the candle stick at the cross. and do the complete opposite for a **SELL**
I tried using **priceInfo[-1].close** but that obviously that doesn't work. ("_priceInfo_" is the array for mqlRates)
So could this be solved with logic ? Or is there a method that I can use ? And if so any help would be appreciated.
Just a visual explanation:
In other words this is what I would like for a **Buy**:

And for a **Sell**:
I am new here, I decided I would like to create an Expert Advisor. I am busy getting familiar with MQL5 and it is going great! I thought I would start of by creating a simple MA crossover EA, and so far so good.
**BUT**
The problem comes in when I need to open a trade.
I want my EA to only **BUY** if the candle stick after the MA cross _**closes**_ higher than the candle stick at the cross. and do the complete opposite for a **SELL**
I tried using **priceInfo[-1].close** but that obviously that doesn't work. ("_priceInfo_" is the array for mqlRates)
So could this be solved with logic ? Or is there a method that I can use ? And if so any help would be appreciated.
Just a visual explanation:
In other words this is what I would like for a **Buy**:

And for a **Sell**:

Aug 24, 2017 at 06:23
會員從Oct 12, 2016開始
779帖子
You should catch MA value in a handle and then, compare it with Candle price.
priceInfo[-1].close should be replaced by PriceInfo[1].close provided if you have sorted the elements using "ArraysetAsSeries()" as well as copied the price information using "CopyData"
You should do a little search for the exact sample code or I may post it in my next post.
priceInfo[-1].close should be replaced by PriceInfo[1].close provided if you have sorted the elements using "ArraysetAsSeries()" as well as copied the price information using "CopyData"
You should do a little search for the exact sample code or I may post it in my next post.
Artificial General Intelligence

*商業用途和垃圾郵件將不被容忍,並可能導致帳戶終止。
提示:發佈圖片/YouTube網址會自動嵌入到您的帖子中!
提示:鍵入@符號,自動完成參與此討論的用戶名。