#property copyright "Copyright 2019, MetaQuotes Software Corp."#property link "https://www.mql5.com"#property version "1.00"#property strictextern int BiggestCandleRange = 6 ;extern bool RoomToTheLeft = true ;extern int RoomToTheLeftCandle = 10 ;extern double RoomThreshold = 5.0 ;extern int...
Hello everyone. I found an interesting indicator on this forum (vq indicator) and I was willing to try it. When I tried to compile it, it throws me 6 errors that are all related to this line for(i=0, int y=0;i<limit;i++) {if (Time[i]<TimeArray1[y]) y++; SumVQ[i]=SumVQ_MTF[y];} The errors are:...
[Deleted]
Friends, I have developed an EA, wherein the buy/sell order will be placed on meeting a condition in EA. But when I run my EA in strategy tester of MT4, on some days this EA is not placing order even though the condition is met on those days during back testing. On other days EA is placing...
This is a little script that closes all open charts but one in the terminal. I then try to change the time period but it gives an error saying it cannot find the chart. Any ideas please? void OnStart(){ long currChart, prevchart = ChartFirst(); int i=0,limit=100; while(i<limit) { currChart =...
Please advise on how to change code to cause indicator to print numbers above price bar rather than within the body. this is the MAB_TD_sequential indicator available for download. Please be specific as i am not a programmer. I assume after the changes are made, i recompile, and it should go into...
Hi, In MQL4 After I do "OrderSend (Symbol(), OP_BUY, 1.0, Ask, 0, Ask - iATR(NULL, 0,14,1)*1.5, Ask + iATR(NULL, 0,14,1), "TEST", 123, 0, GREEN);" on a backtest, I reviewed the trades and it showed me SL and TP that are calculated using a different ATR value than the value from loading the ATR...
-
Is there a way to stop the indicator from drawing when a certain criteria is met? I am currently trying to program a D-Wave indicator and I am trying to figure out how to "stop" the indicator when the wave is completed. The attached code will currently have a line that goes from when the wave is...
(Hello), how to structure a function call to return two different variables? Example: // Functionint OrdersCount(){ for(...){ OrderSelect(...){ OP_BUY(...){Long++;} OP_SELL(...){Short++;} } } return(Long||Short); }// Callif(OrdersCount(Long or Short)<1){OrderSend(Long...
Hi there, please can anyone help - im no coder and tried my best to modify this indicator to add Push Notifications on when the MajorCycle fires the Buy or Sell signal.... it works BUT the alerts never stops... it continues to alert on my mobile, what do i need to add or change so that it only push...
I have some accounts on MT4 and some other on MT5 but i wish to use everything on MT5 is there a way to make MT4 accounts (live) log into MT5 Thanks for any ideas and possible solutions
This is the code i have to run EA based on an indicator which is connected by Icustom. Problem is it is fixed to put SL to object price 2 or 1 and i want to replace that with a fixed stop loss. Even though i implemented the min-max SL functions it didn't workout for me. Can someone...
Software: GT247 Trader (MetaQuotes) version 5.00 build 2078 (11 June 2019) When you have autotrade markers or lines or other annotations on a graph, then drag a new share on to the graph, the markers remain. In my case I have a common window that I drag my trades to, and after a while it gets really...
I want to ask you if it is possible to get the actual text written as a result of a call to comment() method. Thnaks!
Pure maths, physics, chemistry, etc.: brain-training tasks that have nothing to do with trade [Part 2]
(376 1 2 3 4 5 ... 37 38)
End of the first part https://www.mql5.com/ru/forum/123519/page628
[Deleted]
The EA is working in realtime, opening order and providing comments, it is still in developement. But I need to know how it performs in backtest in order to spot more coding errors if there might be. If anyone who can suggest a solution to this would give me a great deal of help as I am very new to...
[Deleted]
Hi, I have a EA that I downloaded from a forum which backtests pretty well, it is a scalper with a small TP and much larger SL, when a buy position is opened and the market goes down it will open a sell position, the max opened positions is two, one buy and one sell, now I was trying to figure out...
Bruno, Do you have the right version of Brainwashing v0.2? It seems only you have. The version which I uploaded to download area does not work. Only version #1 is working (I am testing now on m15 timeframe)
Hi, I am using Metatrader 4 Build 1170. I encountered something very interesting and I am not sure if anyone encountered this before. I am running a few EAs concurrently on the same computer and basically the EAs are the same set of codes. However, I have used a very different OrderMagicNumber for
I want to limit orders only one position for each entry point but I don't want use buy limit or sell limit
Does anyone understand what is this about from providing copy trade? Available in MetaTrader terminal Your signal has low rating and is not publicly available (Details) How to get this done?
Hello! Help please insert the code of this profit counter into my indicator? My is the stochastic crosshair
In MQL 4, I want to generate this error if my class fails to initialize. Like so: void CClass::CClass(int interval) // constructor { if(interval<=0) { _LastError=ERR_INVALID_PARAMETER; // constant cannot be modified compiler error ExpertRemove(); return;...
How to prevent EA open new trade when previous trade hit sl? My ea code : double D110RecentBarHighest; double D110RecentBarLowest; D110RecentBarHighest = iHigh(Symbol(),0,iHighest(NULL,0,MODE_HIGH,110,5)); D110RecentBarLowest = iLow(Symbol(),0,iLowest(NULL,0,MODE_LOW,110...
Task : "If found a bullish candle, then wait until next candle close above the highest price among recent 50 candles". I acheive the above task by writting the following code : if (Open[1] < Close[1]){ double wanted_level = High[1];}if (Close[1] > iHigh(NULL, 0, iHighest(NULL,0,MODE_HIGH,50,2)))...
I need to have a code for the smallest variable of the four variables, and if the value of each is zero, then comment on the next variable. GlobalVariableGet("SL"+Symbol()+"240") GlobalVariableGet("SL"+Symbol()+"1440") GlobalVariableGet("SL"+Symbol()+"10080") GlobalVariableGet("SL"+Symbol()+"43200")
[Deleted]
EA is showing results as expected but, on the XM platform it is showing 130 error after 3 months of backtesting, while on ICMarkets it isn't showing any result and no ERROR, both were backtested on the EURUSD. And here is what made it confusing, backtesting the EA on USDJPY worked well. Am I missing...
for (int i = count; i > 0; i--) { if (OrderSelect(i, SELECT_BY_POS) == false) continue; if ((OrderSymbol() == Symbol()) && (OrderMagicNumber() == Magic)) { if (OrderType() == OP_BUY) { if (Bma1<Bma2) { if...
hello, i have big problem ea lot size.. im write 0.07 lots but backtesting 0.10 lots im write 0.12 lots but backtesting 0.20 lots... example: 0.46 lots after backtesting 0.50 lots.. interesting. my account fxtime eurusd 1:500 laverage 1 min testing... and but I've used this robot before and...
modifying the ichimoku indicator to visualize two or more timeframe clouds on one timeframe chart
(5)
as shown is the ichimoku indicator //+------------------------------------------------------------------+ //| Ichimoku.mq4 | //| Copyright 2005-2014, MetaQuotes Software Corp. | //|
I`m writing a mathematical -statistical bot that will analyze my market.I need to calculate mathematical integrals somehow in MQL4, is it possible.And by integral's i mean these: Can anyone help, how can i program this?

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
If you do not have an account, please register
Allow the use of cookies to log in to the MQL5.com website.
Please enable the necessary setting in your browser, otherwise you will not be able to log in.