MQL4 and MetaTrader 4 - page 9

Hi , anyone who can build Mt5 indicator for me , with really simple steps. Let me know Will pay
Hi, Just wondering if anyone else is getting this odd problem where the terminal is unable to download/update to the new version? I just get this message repeated constantly: "LiveUpdate: old version, try to download new one" Have tried on different days to, just in case there was a server issue
Hi, the error messages below were generated in the journal while an EA was trying to place pending orders. Error 136 (off quotes) is captured by waiting for the refreshrates() in a loop and immediately sending the order again with the new prices; However, the process below keeps repeating itself....
var bool gbroken= false var bool rbroken= false //-----------------------------------[MARKET STRUCTURE INDICATOR]-----------------------------------{ //--------------------------- //market breaking indicator // //-----------------------------------------------------------------------------
I've been using the ALPARI UK Demo for a few months now and this is the firsttime I came across this error. My journal has the following lines (they repeat a few times): DataCenter connecting failed [6] unknown command C6 login The expert that was running during this stopped working, but did...
Hi All, I have created an EA that relies so much on candle and MA statuses at the close of period for both entry and exiting of trade condition. The only exception is if SL is triggered or max drawdown reached. This means that considering I use the 1H time frame, it can only place a trade or exit a
hi guys, i am trying to find the signature of OKX request. the screenshot is showing what i find, the last value in the screenshot is what i should find, and the value before it is what i am finding. any help? it says that hash256 should give raw binary code, after that we encode it on base64... any
Hello, After auto updating MT4 today, my MT4 unable to connect to EA. I have been using MT4 with this EA for a while, The error just appeared after today's program update. Does anyone know how to solve this problem? error message: cannot load
My account went offline because of "old version". I installed the newest Mt4 update (built1420), but now it is no longer possible to drag the EA into the chart. What can I do
[Deleted]
it's works fine on changing time period, but not with symbol. what do i mistake here ?? this for changing time period, worked correct. //+------------------------------------------------------------------+ //+- Roll 1 Button Period M1 ----------------------------------------+ if (id ==
https://www.mql5.com/en/code/mt4/indicators downloaded about 5 custom indicators from here, put to my folder, compiled them, but none of them are working. input window don't even appear. what's the problem? help please. build 1420 my folder address
have a nice day. Below is my code structure. However, I cannot plot this data on the graph screen. Can you help me. I'm new to MQL5. double BUFFERTOP[]; //// int ema1; int ema2; int ma1; int ma2; int highW1; int highM1; int loww1; int lowM1; int closew1; int closeM1; double valueema1[]; double
Hi, due to my testing setup i need an idea how to avoid automatic update from metatrader. Is there an opportunity how to handle with it. Or possibe to rollback to older Version
u sing thi s code: but not working for some rea son...help... each time return s la st profit, but not multiple clo sed order s, which clo sed at the same time. / /------------ double LastProfit( int tip) { double cnt= 0 ; for ( int i=OrdersHistoryTotal();i>= 0 ;i--) {
Hello everyone.. I want use below indicator on MT5 EA this is possible..? // @version= 5 indicator ( "ALİ ALT BUY DENEME" , overlay = true ) Kol_Linii = input ( 2 , "Количество линий" ) Signal = open [ 3 ] > close [ 3 ] and open [ 2 ] > close [ 2 ] and open [ 1 ] > close [ 1 ] and close > open and
It is so fractured !! I try millions solutions on online but nothing can help me. I bought the EA from MQL5 but can't load it on my MT4 server. I try to list down all the details I got, so hope the community can solve my issue without longer discussion thread. Device (1) : MACBOOK Parallels Window
Hello everybody, Since 2 days, all my metatraders 4 (macos, ios and windows 11) stop to connect to trading accounts unless I deactivate my ExpressVPN. I have been working with MT4 + ExpressVPN seamlessly during 3 years and since 2 days it just does not work anymore. I've spent hours with ExpressVPN
#property copyright "CopyLeft, Aad Slingerland aka 2733, januari 2024." #property version "1.11" #property link "https://www.youtube.com/playlist?list=PLCNIo-MSrmGdD7pCCGh7-uPxdXxnBn0Da" #property description "https://www.youtube.com/playlist?list=PLCNIo-MSrmGdD7pCCGh7-uPxdXxnBn0Da"
Hello, I am not taking Stop Out Level, Risk Percentage or Stop Loss into the consideration, The maximum lot size i can take in my account with Account Balance. While calculating the Lot size one major problem is Forex = 100000 Unit Gold = 100 Unit Silver = 1000 or Maybe 5000 Unit Similarly for
  MT4 cannot load EA.ex4  (22   1 2 3)
hello, my case now is I purchased EA from market and cant load it in my mt4, ‘C:\Users\Administrator\AppData\Roaming\MetaQuotes\Terminal\xxxxxxxxxx\MQL4\Experts\Market\name EA.ex4’ other EAs are fine. Im using MT4 ICmarket. reinstall several times already
Hello. Is there a way that I can retrieve the commission cost by a script in MT4 (as I could retrieve the swap fee)
hello everyone, a few months ago I entered my demo account information as a signal which allowed me to obtain live information from my account (drawdown, number of trades, open trade, etc.) and I could see the trades live without necessarily connecting to my MT4 account. For some time now it has
I'm trying to enable outgoing email on my MT4 platform. I have Microsoft 365 essentials via godaddy. I have used smtp.office365.com:587 along with my email/pw along with from/to Mt4 Test keeps saying that the login failed. I'm POSITIVE the email/pw is right
Hi Does anyone here know a way to measure execution speed/latency of a trade? I want to compare different brookers and vps servers. I know how to ping their ip in the cmd. But i dont think that shows the whole picture? For example i ping one of my ECN broker and the results on avg is 64ms In this...
Hello, Let say, Account Balance / Free Margin : $200 Leverage : 1000 Currency Pair : GBPUSD Account Currency : USD Currently i am using : https://www.hfm.com/int/en/calculators/position-size-calculator and this show accurate Lot size but i am looking for formula so i can code into my EA. How can i
Hi All, I am a new to this and it might me a stupid question but would appriciate your advice. The problem is that the profit results of my EA on back testing are not making sense, i have attached one example (see the highlighted in yellow rows). My EA opened a gold buy trade at price of 613.40 on
ICMarkets Denisha chat support says this: Please note that IC Markets’ server time and charts are GMT + 2 or GMT + 3 (when daylight savings is in effect) To align the daily chart candles with New York close (5pm ET) IC Markets server time and charts are GMT + 2 or GMT + 3 when daylight savings is
// Regina Gold Expert Advisor // Author: Aldan Parris // Version: 4.50 #property strict // Define input parameters input int rsiPeriod = 14 ; // RSI period input int maPeriod = 20 ; // MA period input int bbPeriod = 20 ; // BB period input double bbDeviation = 2.0 ; // BB deviation input int
I've noticed that very rarely when internet connection falls for a few seconds/minutes, after it is back online MT4 DOES NOT reconnect properly. What happens is that the top triangle at the bottom right of MT4 comes back green, but the bottom one remains red. In the journal tab (log) the following...
  EA Recovery?  (3)
I deleted an EA from MT4 Navigator>Experts. Can I recover it