Daniel Alarcon
Daniel Alarcon
Friends 2
Daniel Alarcon
Added topic How do i get Deposits and/or Profits
Hi! so I've read some posts that make something like this for ( int i= 0 ; i < OrdersHistoryTotal(); i++) {    if ( OrderSelect (i, SELECT_BY_POS, MODE_HISTORY) && OrderType() == 6 ) {       deposits
Daniel Alarcon
Added topic MQL4 importing a C# DLL
Hi everyone! Hope you guys are fine. To summary, - I created a C# DLL that has a class called `Utils` and a method `public static int GetNumber(string number);` that parses string to int. - The DLL name is Parser.dll and it is in MQL4 libraries
Daniel Alarcon
Added topic Positions parameter - Common Tab EA
Hi, So I'd like to get the value of Only Shorts , Only Longs, Both on my script. This will help me a lot to take decisions on my EA. I've tried the SYMBOL_TRADE_MODE but it says it's FULL_MODE not the current mode. Does anyone would like to help