MQL4 and MetaTrader 4 - page 85

Can anyone teach me how to change the source code below so that Moving Average crossover alert happens once the cross has happened instead of on a current candle? I know that this must be a simple problem for most of you probably but not for me since I am struggling with coding. Thank you in
  Buffer Query  (4)
Hello everyone! I have a question, can someone tell me? My question is about buffers and arrays and it is: Can Buffers be used in Expert Advisors or just Arrays. Thank you very much Manuel
Hello, i am using the icustom function to get values for current and lower tf but when i test it with strategy tester it is getting the value of current timeframe but i can not get value for lower time frame such as 5 min. Can someone help me to fix my problem, thanks #property strict input int
Why is my MT4 not working despite my internet connection working on all other websites
Hi, im using MQL4 and im using iMA function as below : double MAscds = iMA(NULL,0,200,0,MODE_SMA,PRICE_CLOSE,0); After executed the EA, the MA200 only able to appear after 200 Candlesticks. MY Question is how can i have the MA200 at the 1st candlestick after i run my EA ? Thanks
When placing my trendline EA, no trendlines appear on my chart. When back testing they appear, why is that? If you know the problem to this please assist. //+------------------------------------------------------------------+ //| Expert deinitialization function |
Hi all, I would like to get the source code for mt4 for the vwap indicator, but not all the ones that are on the internet, I would like the one like in trading view, applied to hlc3. The code in trading view is: // This source code is subject to the terms of the Mozilla Public License 2.0 at
Hello, I am trying to make my script runs on a certain point (past not future) but all the functions I see is current or checking cyclically for a future point. Any idea how to do so? For example if today is 25th Nov 2022 and I want my script to run in a certain time in date 20th Nov 2021
  Trading Bots  (4)
Hey Guys, can anyone help with explaining how to load a trading bot onto the MT4 Platform
It doesn't happen often, but MT5 on the same machine seems to work fine. I don't know what caused it
I have placed a couple of pending orders. Buy stop and sell stop. They are created fine but after a short time they disappear from my trade list. They appear in history but only as potential trades with no profit or loss. I am not sure what is going on. Any advice will be kindly appreciated. Paul
I am looking for a tool for mt4 that allows me to build orders so that they move according to the rate. I want to be able to double the order with a click, as well as add the desired lot quantity. Is there something like this for mt4
I have a need to use an indicator value in my EA. I know about iCustom but that requires that the parameters for the indicator be available in the EA and passed to the indicator. What I need is a way to let the user change the indicator properties independently and read the indicator value in the...
Can someone add push notifications to this indicator please!! <Ex4 file deleted>
int start() { if (AccountEquity()>AccountBalance()) CloseOrders(); so this will close all orders as soon as any there is any profit its just an example in mt4 but what i want is time resume ,,like after this closes all orders i want to resume in lets say 5 minutes how do we do that
I've downloaded MT4 and am trying to add indicators, but I only see folders for MT5 (which I previously installed and then uninstalled). Any help is appreciated
MQL4 Market: error purchasing product ' Deleted MT4' [30750] - Error occured I have an error that I can't pay even though I have deposited money Please help me
Hello, Is there a kind soul out there that can help me with getting this EA working? I found this indicator (ABC.mq4) on a forum and would like to make a EA out of it, a friend of mine tried to make one but it dosent work (ABC EA.mq4). The indicator is really simple it signals buy/sell situations...
hello, maybe my question is too basic for a lot of you guys, and for that i apologize. but this is the first time that i want to work with fibonacci lines. i have created the code to import Fibonacci retrecment lines into my EA and it works. but how can i return the value of the fibo levels? for
  Fractal  (3)
Hello guys! Trying to get the latest fractal value and I came up with this: double GetLowFractal() { double val= 0 ; for ( int i= 0 ; i< 300 ; i++) { val= iFractals ( NULL , 0 ,MODE_LOWER,i); if (val!= 0 ) break ; } return NormalizeDouble (val, _Digits ); } it
The strategy tester report used to automatically open the web browser when I do a "Save as Report". But after reinstalling MT4, it doesn't do that anymore. Is there a settings to this
how should I recompile the mql4 file into .ex4? from metatrader
Hello, if I modify the stoploss or takeprofit with OrderModify in MT4, and afterwards I call OrderStopLoss immediately, then the result is the previous stoploss before modification. Is there any delay before OrderStopLoss will show the new value
MQL4 platform opens a trade without a stoploss and take profit and then stops all orders from the EA. Since this Monday, this has happened frequently with a VPS in place
I cannot figure out how to add text just above the horizontal line drawn on the chart and centered in the chart window. The following is the code I have written so far: ///////////////////////////////////////////////////////////////////////////
  Language Basic  (2)
Hello guys! I have one question is it any diference between static int some; //or int static some; Thanks
I opened my charts this morning and realized that my charts are missing 8 hours of data. I usually work with 4h candlesticks and i try changing the charts to 1h candlesticks but the same hours are missing
[Deleted]
  MT4 EA  (17   1 2)
Hi all, My mt4 ea is based on 1minute timeframe based on moving average but it opens and closes trade every minute and keeps on repeating. How do I fix this problem ? Please help is needed. I have used function such as max open trade, max long trade, max short trade, max pending trade etc, but I
  Stop loss  (3)
Hi I'm very new at this and put a trade on MT4, My stop loss was set and the candle came very close but didn't hit or trigger my alarm on trading view and the price on the graph was below my stop loss. I was taken out of the trade within 8 pips before my stop loss. Is this normal and do I need to
My object appears on screen briefly at a fractal then moves to my expected fractal. bool A_low() { { if (histo()) { val2= 0 ; for ( int i=histoupcount; val2== 0 ; i++) { val2= iFractals ( NULL , 0 , MODE_LOWER, i); A = val2;