Hi all How I understood to debug the experts in MetaEditor used the last realtime bars according to the selected timeframe. My question if is it possible to debug the expert on the dates history period? Thanks
Hi, I was looking at the source code of the Traders Dynamic Index. First of all I cannot start this indicator by the debugger (- the green button is grey and so disabled??) BUT I can attach it to a chart and it works perfectly!! OK - Now I did this: 1) I saved the source code under a different...
Hi, I would like to add condition for my EA to place order not exceeding more than 2 orders. EA place 1st order if its loss again place new order, even it closed with loss no more order. I want to add condition or how to get total closed order today? please support me!
Hello I am interested in Fibo and Mary Math. I think some fibo degree likes another fibo dgree and there is a relationship between them. I wonder that, if a bar touchs a point of fibo, where it wants to touch as a cycle or which indicators can be used best for fibo trading? Thank you
Hello guys, I'm having a little bit weird issue: I want to write an EA but Metaeditor keeps closing after a while with no error message or visible crash... I can't figure out what's going on... did this happen to anybody else? Thanks in advance.
I have used this indicator for more than a year. Since I upgraded to build 711 yesterday, my indicator is going haywire and I am getting the memory handler can not allocate ... error. Can anyone help me solve this issue? Here is the indicator:
hi there, My EA is simple I have an Indicator called 100 pip Daily Scalper designed by Karl Dittmann my EA works as : 1-entry sell position when the indicator alert sell 2-entry buy position when the indicator alert buy 3- exit sell position after take profit 10 pip 4- exit buy position after take...
Hello, I'm a really newbie and I would like not to chase you! I'm able to draw lines using ObjectCreate command. Here is an example to draw a line on yesterday's high. long chart_id=ChartID(); string daily_high="Daily_high"; ObjectCreate(chart_id,daily_high, OBJ_HLINE, 0, Time[0], iHigh(NULL,...
Hi guys, I'm subscribed to a signal provider with the confirmations turned on. When I started the terminal, the 0.8% value was set, which is fine by me. 2014.10 . 01 04 : 48 : 09.648 '2201770' : Signal - percentage for volume conversion selected according to the ratio of balances and leverages, new
Hi guys, I would like to ask if i had a proper coding when dealing with GlobalVariables. int OnInit(){ //check if GlobalVariable is present if(!GlobalVariableCheck("TradeAllowed")) { GlobalVariableSet("TradeAllowed",1); } else { GlobalVariableSet("TradeAllowed",1); }} I have...
I was wondering if there is still a cap on the maximum account password size for master/investor password? If so, what is the max? Are special characters allowed now? mt4 I think used to have a 14 character limit with no special characters allowed. This allowed for very weak passwords.
Hi, can someone help me with this indicator i've got from here. I've modifying it so the indicator would draw standard deviation of the net position from COT data, but when I'm loading it onto the chart, it draw nothing... This is the source code:...
Hi, I'm running an EA on Demo account where server is Pepperstone-Demo02 I got weird EA logic so I printed it: if(IsDemo()) Print("I work at a demo account"); else Print("I work at a real account"); It prints "I work at a real account" This is annoying me a lot. At least, when I connect to a...
[Deleted]
Hi guys, I have problem with #import function on pc with system Win XP (!) On pc with system Vista the same code working ok My code library: ..\MQL4\Libraries #property copyright "Copyright 2014, MetaQuotes Software Corp."#property link "https://www.mql5.com"#property version "1...
[Deleted]
Hi,there. I need an alarm to give me a notice when a sudden point change on XAGUSD comes,which often take place on the day of publishing non agricultural employment report. So i can hear this alarm by my loudspeaker box. any friend know how to build this one
I understand Windows 8 does not allow writing of new files saved eg. profiles, etc into the original directory. I can see the new profile saved when I pull down the menu but I need to locate the file physically to copy into another MT4. How do I locate that. Thank you
hello, I would like to draw trend lines with line segments. These are static trend line, they will be fixed on a specific period. With your help, I would like to know how to set the start time of the period and the end time. If you have any leads let me know! Kind regards.
[Deleted]
If insert new input parameter and compile expert, not show new parameter in stategy tester, need to restart terminal to see new parameter
I have recently begun learning how to program my strategies into a DLL. I am using Visual Studio/C++. QUESTION 1. I know I can pass data from MT4 to the DLL file when I call the function such as mydllfunction(data1, data2, data3) but is there another way I can get data into the DLL for...
Won't test experts anymore as of today 9-25-14 Tester: Cannot load Experts\ Cannot open file 'C:\Program Files (x86)\OANDA - MetaTrader\MQL4\Experts\Daily Rat.ex4' [2] Any EA I try that were previously working are not able to load now. Please advise
[Deleted]
Dear MetaTrader 4 support Service, I've installed Meta Trader 4 android version on my mobile phone. I've a few acc in different broker. The problem is: if i viewing Broker A, then i want change to view my acc in Broker B, there is no "account" menu but it directly appear "New Order" menu for...
Dear, I am using WebRequest. and want to get return value: _url = _url+"?message="+Message; //--- load html page from URL res=WebRequest("GET", _url,cookie,NULL,50,post,0,result,headers);//--- check errors if(res==-1) { Print("Error code =",GetLastError()); ReturnValue=0;...
[Deleted]
Assuming all my trades have some StopLoss, how can I write a function that will determine if, given the direction (buy/sell), volume, and stoploss of a trade, it is possible to get a Stop Out. For example, if I want to open a buy order when the Ask is 1.56432 with a stoploss at 1.56232 and a volume...
Hi Guys, I just want to ask what is your idea on dealing with 2 EA's communicating in one Client Terminal. For example, same EA's are placed on EURUSD and GBPUSD both have ample amount of trades, when EA on EURUSD reach a condition to which it will close all opened trades because it reach certain
[Deleted]
What's the most efficient way to isolate historical bars, new real-time bars and ticks in OnCalculate? e.g. int i, last; if(prev_calculated > 1) i = prev_calculated - 1; else i = 0; last = rates_total - 1; if (i == last) { //tick } else { //historical &...
[Deleted]
Hi, I tried write proper code for function, but (I think) I can't call it. Have you got any suggestions? I read tutorials and tried to find solution of this problem using break, return.... Bool return value, and I can't use void. Maybe int start(){...Trailing(true);return(0);} bool Trailing(bool...
[Deleted]
Hello, Currently, I have a custom indicator runs quite well and I would like to put it to the App store. Are there some kind of template for creating such app? Since my indicator mostly analyze the market price and tell the user when to buy/sell, I don't think I need an extremely advanced tools....
Hello Everyone Is it possible to change presentation of candles into bars? In Overlay Chart indicator Overlay chart is presented by candles...I want to be bars instead... Is it possible? Is there function doing it ? In MT5 it is DRAW_BARS...what is in MT4? https://www.mql5.com/en/code/7933...
Works fine getting the 4 values. I would also like to know when the bar switches color, How do I determine that?

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.