utemyniudng

Author: Copyright 2021, MetaQuotes Software Corp.
Orders Execution
Checks for the total of open orders
0 Views
0 Downloads
0 Favorites
utemyniudng
ÿþ//+------------------------------------------------------------------+

//|                                                         &÷SáOo`.mq4 |

//|                        Copyright 2021, MetaQuotes Software Corp. |

//|                                             https://www.mql5.com |

//+------------------------------------------------------------------+

#property copyright "Copyright 2021, MetaQuotes Software Corp."

#property link      "https://www.mql5.com"

#property version   "1.00"

#property strict





//+------------------------------------------------------------------+

//| Expert initialization function                                   |

//+------------------------------------------------------------------+

int OnInit()

  {

//---

   

//---

   return(INIT_SUCCEEDED);

  }

//+------------------------------------------------------------------+

//| Expert deinitialization function                                 |

//+------------------------------------------------------------------+

void OnDeinit(const int reason)

  {

//---

   

  }

//+------------------------------------------------------------------+

//| Expert tick function                                             |

//+------------------------------------------------------------------+

void OnTick()

  {

//---

   Comment(

            "   &÷SÀQ<Pÿ" + DoubleToString(AccountEquity(), 2) + "\n\n"+

            "   &÷Sё˜ÿ" + DoubleToString(AccountBalance(), 2) + "\n\n"+

            "   &÷Snm¨RÈvNÿ" + DoubleToString(AccountProfit(), 2) + "\n\n" +

            "   ;`¢‹USpeϑÿ " + IntegerToString(OrdersTotal())

   

   );

  }

//+------------------------------------------------------------------+

Comments