mkhno.9 Trader Jan 30, 2024 1 0 6 22 Jan 30, 2024 #1 hi guys can someone helpe me to find ea ma cross close trade .. i mean if ma crose the open trade that i open must be closed
hi guys can someone helpe me to find ea ma cross close trade .. i mean if ma crose the open trade that i open must be closed
hayseed Master Trader Jul 27, 2010 1,156 275 149 usa Jan 31, 2024 #2 mkhno.9 said: hi guys can someone helpe me to find ea ma cross close trade .. i mean if ma crose the open trade that i open must be closed Click to expand... //------ one of the simplest and easiest to understand is included with mq4 platform...... it can be modified to suit your needs......h //----- Code: //--- calculate open orders by current symbol if(CalculateCurrentOrders(Symbol())==0) CheckForOpen(); else CheckForClose(); //--- //------ Attachments Moving Average.ex4 14.8 KB · Views: 2 Moving Average.mq4 5 KB · Views: 1
mkhno.9 said: hi guys can someone helpe me to find ea ma cross close trade .. i mean if ma crose the open trade that i open must be closed Click to expand... //------ one of the simplest and easiest to understand is included with mq4 platform...... it can be modified to suit your needs......h //----- Code: //--- calculate open orders by current symbol if(CalculateCurrentOrders(Symbol())==0) CheckForOpen(); else CheckForClose(); //--- //------