MQL4 and MetaTrader 4 - page 15

Dear experienced traders, It seems not possible for me... Can I test 2 EA together in same strategy tester in one terminal? Thank you in advance and best wishes, Sky
Hello I want to know where i can check if my VPS is working. Secondly i dont know which Ping is the right one? In the Journal my ping to the signal server is only 84.71 ms
I updated to the new MT4 version January 2024 and when logging back into my account I noticed the option for a trailing stop was no longer listed under the Close order and Modify order option. YES I know how to set a Trail, NO the option still doesn't appear if I goto the terminal and left click
So basically anyone trade news knows that no matter what SL you had set, the news will wipe them out with their slippage. I wonder what if I use EA to close a trade based on the the account loss? for ex: close this trade if its profit is -4. By using this way, is it better to handle high impact news
Hello, In default, all the Comments texts shown on Left side. I want to change this to Right side. void OnTick () { ChartComment(); } void ChartComment() { string buy_l = (Buy_Limit && !Close_Buy_Limit) ? "Active" : "Paused" ; string sell_l = (Sell_Limit && !Close_Sell_Limit) ? "Active"
Hello. I'm trying to resize 2d array.double array[1][1];ArrayResize(array, 100, 100);Print(array[50][10]); Could anybody help me? I'm trying it in MQL4
Has anyone experienced that MT4 has stopped working on Sonoma 14.3 ? How can it be fixed without using virtual machines and other things? I would like to get it working again
Hi everybody, I'm using "broker" account and I downloaded "broker" setup.exe from "broker" website. After installed a MT4 terminal, I loaded the Fractals indicator (the built-in indicator in MT4) onto my charts, but I cannot see the arrow signs, instead all with box signs. Anyone has the solution to
hi i have been trying to adapt this code to my ea so I have got it to find a trend line drawn by me on the chart no it not my code just my adaption of the code the function works and produces the desired result however i can figure out how to get the result out of the function that is i cant...
[Deleted]
Hi Guys, Is there a List of all Symbols/ Instruments in which i can search in for specific Set ups?
FX Bot File //+------------------------------------------------------------------+ //| Ignite FX Automated Trader Robot.mq4 | //| Gregory Delazeri | //| |
Hi. I trying to find out how to obtain the session index of the current trade day. for the function: bool SymbolInfoSessionTrade ( string name, // symbol name ENUM_DAY_OF_WEEK day_of_week, // day of the week uint session_index, //
I am curious, MT4 indicators seem to use slow algorithms. For example, Ichimoku computes the maxes and mins by just looking back at the given input look back period as opposed to having an efficient data structure do it. It also keeps many buffers that are O(n) size where n is the number of bars in
  URL Address  (31   1 2 3 4)
I get an error message saying to add the URL address to Experts, but I did add it. Why would I get the error message when I did add it already
Hello I am using Vps for my Exness server. I got Singapore 3 server to migrate my chart and ea. Unfortunately it showing failed to connect. My PC firewall disabled and test it but result same. I contacted support but they worst of customer service. I can't change server. Only change account details
Hello, I just activated my MT4 account through [broker name redacted] , and I have been trying to log into MT4 on my laptop and on the web, but every time I try to login it does not work. To my understanding the login is the number your broker gives you and your password is the password from the
Hello, I am attempting to develop a trailing stop loss feature for my EA. Here is the logic: Obtain the entry price of the open trade. Determine the trailing price: Entry Price + Take Profit. Define the trailing gap as follows: For Buy orders, Bid - Trailing Gap; For Sell orders, Ask + Trailing Gap
Hello,     i don't knew why MODE_CHIKOUSPAN return 0 usually   i use this code :  double CHIKOUSPAN=iIchimoku(NULL,0,9,26,52,MODE_CHIKOUSPAN,0);     waiting for help    thanks     
The MetaTrader 4 platform update will be released on Friday, November 10, 2023. Terminal: Improved Market security system. Now, in order to run the product, the user must be authorized in the platform with the same MQL5 account via which the product was purchased. The account must be specified under
This code doesn't work: struct LockStruct { int ticket; int locked; }; orderTicket1 = orderOpen( "buy" ); LockStruct orderTicket1 = {orderTicket1, 1 }; 'orderTicket1' - constant expression required declaration of 'orderTicket1' hides global variable If I am interpreting this correctly, I cannot
Hello, I wanted to double check the sequence of operations to follow a Signal using MT4 and a registered VPS. I login to the account in the terminal I subscribe to the signal I set the signal settings in the options (Ctrl+O > Signals tab) Check the "Enable realtime signal subscription" Check the
I am getting 4200 error, i tried to fix but failed.using RSI to change object. void textobject_side() { textobject_array[ 0 ] = "-------------------------------------------" ; textobject_array[ 1 ] = "" ; textobject_array[ 4 ] = "" ; textobject_array[ 5 ] = "" ; textobject_array[ 6 ] =
Hello guys, I'm facing an issue with my code: I want to check profit for a closed order, using OrderProfit() . In MT4 app, this trade is like this in history: In logs here are information coming from my code: In my code I use OrderSelect() in history with ticket ID ( OrderSelect(ID
Hello, I have recently purchased the VPS service offered directly on MT4. My EA has been tested for any potential bugs / errors and seems to be working fine when I run on my local machine. When I connect to the VPS, even when I can see valid entries on an external chart, it is not being entered on
When I click on a (standard/normal/OBJ_BUTTON) button, if the click is at or near a horizontal line, the line will be selected too (because the option "Select object by single mouse click" is activated), which is undesireable for me. How can I make it so that only the button is clicked and NOT other...
[Deleted]
Hello everyone, Please excuse my somewhat limited technical knowledge as I try to describe my problem. Before the recent update I used the EA Install v1.23 utility to build install packages. I used {metatrader}\experts\indicators as the destination folder for the installer to put the ex4 file into...
Hi, i need to use the OrderSend function (MQL4 language) in my EA to open some orders and i have the stop loss and the take profit value in two different string, instead the OrderSend receive them as double value. So i use this syntax: int order_result = OrderSend (order_params[ 0 ]
Hi All the MQL4 Experts, I am new to this forum although I have been creating my EAs and Custom Indicators. I have one EA right now I used to display my account status like PipValue, Exposure, Margin Percent,... to help me make decision whether I Buy/Sell more or Close Buy/Sell tickets. Now I need...
Hi. Fairly new to this, but have a question that some of you guys that know a lot more than me :-) I am looking for a trading bot that will take case of buying, selling and modifying my positions in the Forex market. I am copying a well know trader, and there are so many messages coming about TP1 is
Hello! Does MT4 have this function where, once a certain Price is met, a Pending Order will be then placed (Limit Order or Stop Order)? Thank you all!