OrdersTotal in a specif pair of currencies

Aug 15, 2016 at 05:08
663浏览
7 Replies
JHenrique
forex_trader_318221
会员从Apr 07, 2016开始   32帖子
Aug 15, 2016 at 05:08
Hi guys!

I have another problem…

I want make this:

if(the number of orders in EURGBP < 2){do it…}

I know the function OrdersTotal(), but I don’t want to know the total, I want to know the total in EURGBP! So, how can I do it?

Thanks again!!
会员从Aug 20, 2009开始   266帖子
Aug 15, 2016 at 06:45 (已编辑 Aug 15, 2016 at 06:48)
Use this function :-

int Trade_Count(int My_Magic, string my_symbol)
{
int
   counter = 0;
   for(int i = OrdersTotal()-1;i>=0;i--){
      if(OrderSelect(i,SELECT_BY_POS)>0){
         if(StringFind(OrderSymbol(),my_symbol,0)>-1){
            if(OrderMagicNumber()==My_Magic)counter++;
         }
      }
   }
   return(counter);
}

Function call would be something like :-

Number_of_Orders = Trade_Count(12345, 'EURGBP');

Wealth Creation Through Technology
JHenrique
forex_trader_318221
会员从Apr 07, 2016开始   32帖子
Aug 15, 2016 at 11:22
Didn't work... Something is wrong with syntax of this code...

=((((((((((
会员从Aug 20, 2009开始   266帖子
Aug 16, 2016 at 06:16
Replace the ' around the EURGBP with double quotes('). The website seems to change my original quotes.

Also the Number_of_Orders should be declared as int
Wealth Creation Through Technology
JHenrique
forex_trader_318221
会员从Apr 07, 2016开始   32帖子
Aug 17, 2016 at 10:30 (已编辑 Aug 17, 2016 at 10:50)
I tried again, but, without successful...

I think the problem is in the word 'my_symbol'. I substitued it for EURGBP, 'EURGBP' and 'EURGBP' (with and without string before) and the code continues to give problem...
会员从Aug 20, 2009开始   266帖子
Aug 17, 2016 at 12:40
The code is solid. I have tested it via a script. You need to be more specific as to the error that it is giving you. Alternatively, post the mql file and I will have a look at it.
Wealth Creation Through Technology
forex_trader_72824
会员从Apr 08, 2012开始   10帖子
Aug 17, 2016 at 15:47
JHenrique posted:
Hi guys!

I have another problem…

I want make this:
https://monitorfx.pl/

if(the number of orders in EURGBP < 2){do it…}

I know the function OrdersTotal(), but I don’t want to know the total, I want to know the total in EURGBP! So, how can I do it?

Thanks again!!
Didn't work...
会员从Aug 20, 2009开始   266帖子
Aug 17, 2016 at 16:32 (已编辑 Aug 17, 2016 at 16:32)
Here is the code in a working script.

附件:

Wealth Creation Through Technology
登录 / 注册 to comment
You must be connected to Myfxbook in order to leave a comment
*商业用途和垃圾邮件将不被容忍,并可能导致账户终止。
提示:发布图片/YouTube网址会自动嵌入到您的帖子中!
提示:键入@符号,自动完成参与此讨论的用户名。