Forum

AMP MT5 version 5 build 3037 Can't send pending order

I have an EA that works fine in AMP future MT5 platform demo account . However, it won't send buy limit and sell limit order in their live account. Contact AMP trade desk they said they received order as a Fill or Kill order and I need to remove that setting. I don't know where I need to change in

How to connect to MetaTraders accounts from Web?

I want to display my MT accounts trade activities to a web page. Is is possible to connect to MetaTraders accounts from Web? If yes, how

how to update phone in profile settings

I want to update my phone number in my account. MQL5.com requires both SMS codes from my current phone number and the phone number on file. Unfortunately I don't the phone number any more I used to sign up my account. Any way can I update the my account phone number on file

No Market tab on MT5 running on Window 7 64bit.

I installed MT5 64 bit on Windows 7 64 bit . there is no market TAB showing up. Please advise

Can MT5 hide a executed trade for 15 seconds?

I am not sure if this possible. Say MT5 executed a trade and can it be hidden for say about 15 seconds before people can see it on MT5 client terminal

how to access indicator two dimensional indicator buffer

#property indicator_separate_window #property indicator_buffers 8 #property indicator_color1 White #property indicator_color2 Red #property indicator_color3 Gold #property indicator_color4 GreenYellow #property indicator_color5 DarkOrange #property indicator_color6 PaleVioletRed

how to get last closed order ticket number with MQL5?

I am newbie with mql5? Would like to know how to get last closed orders (market order closed or pending order deleted) ticket number? Thanks in advance

MQL5 web call not refreshed.

I have following codes in my MQL5 EA and web call httpGET is not refreshed even there is a new records. please help. string get_data= ""; string response=""; StringConcatenate(get_data,webpage_link,"to_MT4.php?get=1"); response = httpGET(get_data); Print("response: ", response);

create panel with mql5

I am newbie to mql5. I would like to know how to create a panel like image below with mql5. Thanks in advance

how to process string in mql5

Say it has input like this in EA preset input string BL="L1,L2,L3,L4"; how do I process this input into a string array like? BLS=(L1,L2,L3,L4); Thanks in advance