MQL4 and MetaTrader 4 - page 360

Hi, I have a requirement to automate trades based on signals from an indicator that I have developed. I haven't previously coded an EA to do this. In the past, when I have looked at posts in this forum, the task of correctly handling/processing orders seems to have many issues that require quite
The ENUM_OBJECT_PROPERTY_INTEGER "OBJPROP_DRAWLINES" does not functioning on MT4, but it does on MT5. We can see the existence of the integer "OBJPROP_DRAWLINES" on the web-page https://docs.mql4.com/constants/objectconstants/enum_object_property, on the table ENUM_OBJECT_PROPERTY_INTEGER
Hi all. I recently created an EA and tested it a few times with decent results. When i try to optimize two different variables to find optimal results, i found that the optimizer and the manual tester generates different results. When i use the Pass that has generated the most optimal result
By trying to delete pending orders from ticket number I got the error message "OrderDelete error 4108" Here is my code: bool DeletePendingOrder(int ticket){   double freezelevel     = (MarketInfo(Symbol(),MODE_FREEZELEVEL)+1)*Point;   double openPrice, currentPrice;   int orderType;      if(...
So the MT4 gateway that we use doesnt seem to work well with our bridge and LP. When we receive clients orders, some of these orders are hedged by us taking cover trades. However, we cant confirm if the cover trades were successful or not. What can be wrong here and does anyone know how we can fix
Hello I Use this code to save price and CCI value and ASI value. The saved file name contain the indicators period. I save a CCI(14) but i would like to save CCI(15) in an other file, CCI(16) in an other file ... Can you help me please ? #property copyright "Copyright © 2013 Trading
Hi I don't now what is wrong here, but I can see the OP_BUY is in red so maybe that is the issue, but no idea how to fix is. I also don't know what it means when a symbol or letters are red. The code is attached, I hope it goes up here in the way it's meant to because I've seen threads here where
  EA works but doesn't trade  (11   1 2)
Hello together,  I set up my own VPN and I am trying an basic EA just to test if everything is working properly via the VPN. I am using the MACD Turbo for trading (a simple EA). Everything is set up right from my point of view. The smiley appears but no trade since two weeks. The backtest shows that...
Please can somebody help me on this.Iam building this single ema moving average -EA, But my problem is this, how to write it and put it in Custom code...... ( Prevent my EA from opening new trades after TP, SL or TRAILING STOP untill another cross over occur
Hey guys, I made this little test-script: void OnStart () { Alert ( iTime ( "USDTHB" , 60 , 1 )); } The result was a date from 2018. When I started the script once again, the correct time and date was printed. I know this is because I never look at USDTHB and the history is not loaded in the
  Indicator Trouble W/ MACD:  (11   1 2)
On the screenshot attached you can see two places I want to focus in on. I have used the function in Mt4 (MACD>0) & (MACD<0). But the value when MACD = 0 is not this specific crossover, as I thought it was. Does anyone know what my points (A & B) in the screenshot are called? Or how to locate them
Hi there, Does anyone here ever experience this? I noticed that during high activity times during NY session, MT4 kind of lags and stutters. My computer is actually very powerful and I don´t have lots of indicator going on. Is there any way to improve this
Hi, I have idea. But i don't know mq4 code much. Previous high is lower than 2nd previous high, then buy pending order at previous high * 2% or 1% and when price at current candle touch that order buy. Previous low is higher than 2nd previous low, then sell pending order at previous low * -2% or -1%
Hello.. I recently acquired a very old EA on Bill Williams strategy but I don't know how to get it to work properly. I have tried many different settings on demo and it works sporadically, but I still can't nail down what to do to control it. Any info on what settings to use would be great
Hi Please can someone have a look at the attached results from Tester please on the screenshot? The profit / losses on the trades don't quite make sense to me. If look at trade 1 for example- lots is 0.12 and it takes profit 86.4 pips away from entry. So, that should be a profit of 110 right? The
  Spread Tester  (3)
20 or 200 what is right setting
Forex Profit System – MT4 Indicators and Template 780 pips profit – last two week results Today we will show you another great trading system, we are test it for two weeks on eur/usd and gbp/usd pairs and archive over 750 pips from eight trades (seven wins, one lose trade). You can download forex
Hello, As you can see in the video, when timeframe M1 is selected, the monday 16th of september 2019 disepear and the yellow ellipse is not on candles. Janfi
Hi! Inspired by Bill Williams and what he calls "Point Zero", I have been several days thinking about a way to detect potential tops and bottoms using Fractals, Momentum, Moving averages and Market Facilitation Index. I thought it wasn't really possible and tops and bottoms were random, but I think...
I want to use classes inherited from CChartObject (Metaquotes standard library). For example, I want my script to draw a trend line by using CChartObjectTrend class. But the parent class (CChartObject) destructor contains deleting the object. That means when the script is ended the trend line is
hi guys hope doing well this ea is not working. it doesnt have any problem but i dont know why it's not working can anyone fix it please? thank you
void rolLongStopA() { for(int b=OrdersTotal()-1; b>=0; b--) { bool LongA; if(OrderSelect(b,SELECT_BY_POS,MODE_TRADES)) if(OrderMagicNumber()==Magic) if(OrderType()==OP_BUY)
Hi all, I'm searching for a good median renko expert for MT4. Could you suggest a good version? Thank you
I'm getting an error, can't divide by 0 when i try to run my EA on AUDCAD . I'm pretty sure i've narrowed it down to: MarketInfo( Symbol (), MODE_TICKSIZE). If i print that. It returns 1e-5 double LotSize = MarketInfo( Symbol (), MODE_LOTSTEP); double riskAmount = AccountFreeMargin() * (Risk /
Hello, I want to get the chart data for, for example H1, M15 and M1 so that I can display something about them regardless of what time period is currently being displayed. (I am very new to MT4, but not programming) *blushes* I have seen an example where within OnCalculate, the flowing code is used
Hi guys, anyone have ideas about how to delete only visible objects on current timeframe? I have this code here for delete all objects: if (ctrl_pressed == false && lparam == 16) // Shift key pressed ctrl_pressed = true; else if (ctrl_pressed == true) { if (lparam == 68) {
Hi! I'm looking for an indicator that paints a higher timeframe HA-candle in the background of a lower timeframe chart. In the link from https://www.prorealcode.com/prorealtime-indicators/higher-time-frame-heikin-ashi-candles-on-a-lower-time-frame-chart/ for example on a M5 chart there is the H1 HA
Problem description: Chart cannot shown in full screen. Chart is blocked by quotes bar
  Limiting one entry per pair  (21   1 2 3)
Hi: I have been attempting to limit only one transaction (either long or short) per pair with the following code but it constantly opens up two transactions of each pair. Could it be due to asynchronous messages between the terminal and server? I tries sleep(3000) but that did not work either so I...
Hello to All Please let me know how to solve this problem While the system is testing the EA during the Automatic validation this error appear : ERR_NOT_ENOUGH_MONEY: The only thing I can change is the spread before the test. For my EA - all the parameters are manageable / changeable - depends on
This website uses cookies. Learn more about our Cookies Policy.