007isrisk / Publications
Forum
help with mql5 code, loop closed orders ,if order just closed =alert
help with mql5 code, loop closed orders ,if order just closed =alert i have code for mq4 i want code for Mq5 without MT4Orders.mqh // Loop through closed orders for ( int i=OrdersHistoryTotal()- 1 ; i>= 0 ; i--) { if ( OrderSelect (i, SELECT_BY_POS, MODE_HISTORY)) { // Check if the order
does mql5 allow allow file sharing between MQ4 and MQ5
mt5 is not reading mt4 csv file i wrote EA both on mq4 and mq5 aim to write and read csv file mq4 reading mq4 mq5 reading mq5 mq5 not reading mq4{ is this from my side } csv file is in common folder does mql5 allow allow file sharing between MQ4 and MQ5
how to access TERMINAL_DATA_PATH
i tried to write to TERMINAL_DATA_PATH with TerminalInfoString ( TERMINAL_COMMONDATA_PATH )+ "My Folder" // not Working please help https://docs.mql4.com/files/foldercreate TerminalInfoString ( TERMINAL_COMMONDATA_PATH )+ "\\MQL4\\Files" ;//Working