Forum

Request to change my account.

Dear MQL5 Crew. Please allow me to change the account under which I am registered on MQL5. I have tried with settings form, unfortunately it does not recognize my current correct password. Probably it may be because I am trying to use email address I used to be registered as user abut 2 years ago -

OrdersHistoryTotal () returns a value that is one higher ???

Hello, Looking for a way to find the closing time of the latest position I have created the following functions : int FindIndexOfLastClosedPosition() { int index ; datetime LastPosition = 0 ; for ( int i = 0 ; i <= OrdersHistoryTotal() ; i ++ ) { if ( OrderSelect

[ SOLVED ] EXACTLY THE SAME PROGRAM. Different behaviour at VPS, different at my Home Computer.

Hello ! Today I have met very vierd issue : 1. I have exactly the same versions of my EA : both at two Windows 10 : VPS and my laptop. 2. EA is for immediately closing all positions after daily drawdown limit/ profit target reached. It is aimed to prevent me from trying to open more positions after

Editing EA Name ( In Market Description ) After Publishing

Hello ! Of course, I have used "search" option, to find solution for question in title above. I have found this : https://www.mql5.com/en/forum/365937 Unfortunately, this MENU looks a little different now and I can't find this option there. Problem is, that I did annoying mistake in the TITLE of my

[solved] How Can My EA Recognize Difference Between PIP and Point ?

Hello ! How To Recognize PIP Size in decimal places ( PIP, not Point ) ? I had idea like this : string Instrument = Symbol () ; double PIPSize ; double PointSize = MarketInfo ( Instrument, MODE_POINT ) ; if ( PointSize < 0.0001 ) PIPSize = 0.0001 ; // for most currencies if (

Problem with SymbolName (int pos, bool selected ) function. Symbol that is not in Market Window appears, althought selected bool true.

Hello, I am in the process of creating the simple PIP calculator ( learning and portfolio purposes - I know a lot already exists ). I have used CComboBox (MQL5 Standard Library. Panel And Dialogs) as the instrument selection field. The part of the code responsible for displaying selected Symbols is

MQL5 Standard Library Panels And Dialogs. Check Function

Hello ! As this is my first post this forum, I would like to extend a warm welcome to Everyone ! Can anyone explain or show, where in documentation is function Check ? And what this function arguments mean, please. I have found this in CCheckGroup code example. It is marked on attached file. Sorry