Automatic tests This year we've made a system of automatic checks of uploaded experts with reports and notifications to authors about test results. This solution has increased the speed and quality of checks. And the first few days of automatic checks of EAs have shown that many Competitors have not
How to detect that the indicator is attached to a chart in "visual" testingmode. Especially how to get the tick time, the Time[0] value is ok but the TimeCurrent() is market watch time.
[Deleted]
Hello all I have written a dll to open an HTML email every time and save it as plain textto be useful to expert advisors. I use Mictosoft Word for opening html file andsave it as plain text , here is a part of dll code: ofstream Msg(Dest + "\\experts\\files\\MessageFile.htm",ios::out|ios::trunc);L3...
[Deleted]
Hello, ive bin really, really trying to code an EA function that would do the following. It would find the value of the MA in the last two closed bars and see if theiris a difference of 'MinAng' in are case 5, between the two and in what direction. ex. shift 1 - 2.0325 (one bar back) shift 2 -...
To all Russian writers on this forum : Can you please post comments in english so everybody can understand ? There are great articles to read. I know they are all translated in english butmost of the comments are in russian in the russian section. So please, comment in english so everybody...
[Deleted]
Hi, I need to calculate the stochastic formula on a array (looking for fast %k only),this array is not a indicator buffered array. This is my code: double SmallestBuffer[], LargestBuffer[], COTIndex[]; int COTIndexPeriod=13, //similar to Stochastic %K period...
[Deleted]
Hi, i'm new in mql4 and need help now i'm trying to code my ea with condition; 1) run in m1 chart and do entry using complete bar on m1 2) i want do exit at m5 complete bar or above (m15,m30,m60,....). i'm facing a problem on how to code that my m1 ea can read larger bar. sorry for my bad...
[Deleted]
I would like to update my code so that my EA can detect divergence/convergence betweenprice and momentum. My idea goes something like this: Have threevariables, macda, macdb and macdc. Macda would be on the current bar ie 0 shift,macdb on a 1 bar shift and macdc on a 2 bar shift . A peak would...
I have the following start function in my expert : static double EMA_Short_Saved=0; int start() {//---- if(!isNewBar()) { return(0); } double EMA_Short_Current = NormalizeDouble(iMA(NULL, 0, 5, 0, MODE_EMA, PRICE_CLOSE, 0), 4); double EMA_Short_Previous =...
Programmer. Create indicators , advisers in the shortest terms. ICQ 228-875-471 e_mail: yyyamiyyy@yahoo.com
[Deleted]
Is it not possible to set a SYMBOL_LEFTPRICE as the arrow type in a SetIndexArrow(0, xxx) function? I've tried and it doesn't work. The docs aren't specific on this. I desire to insert price labels at the point of entry when the conditions for asignal are met. I'd rather not write a script to do...
[Deleted]
Guys I'm trying to keep this as simple as possible but have hit a wall. The EA should place orders when the RSI period gets to a cetain point which works fine. However when sending the Order I only wish to send one and only one order but unfortunately sends hundreds all at the one time. I would be
Alpari Databank imported into M4 Alpari Database imported into Mysql and using same formula in PHP Im using same formula and both at same time intervals for this year. Can you see the difference
[Deleted]
Has anyone tried to trade automatically with MT and Ninjatrader? The thing is that my broker does not support MT so orders have to be sent fromMT to NT via DLL or COM interface. There is also option NT to generate order based on .txt file created by anotherprogram. So my question is does MQL have...
[Deleted]
Hi, Just wondering if anyone else has been kicked off the trading championship (afteryour expert etc has been accepted), for no specified reason? After submitting myExpert about ten days ago, I received the following report about my expert: The verification of your Expert Advisor is complete....
[Deleted]
I am trying to write a MA indicator that change color when it change from goingup to down and vice versa. I have tried to use SetIndexStyle but that change all of the indicator color. Can someone help me with this?
[Deleted]
When the iRSI gets to XX value I attempting to Close Out all Open Orders howeverits not executing... I believe a 'if' condition is not being met? Cheers! if(iRSI(NULL,0,21,PRICE_CLOSE,0)==50) { for(cnt=OrdersTotal();cnt>=0;cnt--) { OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);...
[Deleted]
Hello everyone. This is the first time I have posted any of my custom indicators. Preamble; I have my own successful system but one thing that has always bugged me (and every other trader) is timing. Timing a trade correctly is so vital that it can be the difference between a 50 pip stop and a 20...
Does anyone have an idea why these lines (extracted from my EA) giving me Invalid Stops error on USDJPYm on live account? It is okay on demo with same leverage.. . I am stuck here. double closePips = 15 ; double lotSize = 2 ; string sym =" USDJPYm "; double stopLoss = NormalizeDouble ( MarketInfo (
Transferring an Indicator Code into an Expert Advisor Code. Conclusion This is the final article, devoted to transferring an indicator code into an ExpertAdvisor code. Here the author transforms on a certain example a code of an ExpertAdvisor so, that this EA is presented in a single file without...
Hi all, I want to make an EA using custom indicator, unfortunately it's paint the past. Let's say I want it to open an order when the indicator cross 0 level up from minuslevel, double indienow=iCustom(...,0);double indiebefore=iCustom(...,1); if ( indienow>0 && indiebefore<=0 ) ticket=OrderSend(...
[Deleted]
Hello, this is 1st. October night, but my files are not deleted. Can you pleaseallow us (eliminated people), to delete our files from contest... Thanks
On the website of the Automated Trading Championship 2007, the article The Automated Trading Championship 2007 has Begun has been published. The 1st of October, the day when the Automated Trading Championship2007 starts. Registration and checks of Participants are finished. 603 Participantsare...
[Deleted]
Hi, Is there any way my init procedure can tell MetaTrader that the initializationfailed, such that the smiley face will not appear? Thanks, Kevin
[Deleted]
I have had many orders where stoploss acitvated altough price not reached. I had an order where I bought 1 lot EUR/USD and putted stoploss to sell it if pricegoes above 1,4198. Stoploss activated at 15:42 altough at 15:42 (28th of september)high was 1,4196. So my order was closed without stoploss...
I'm trying to build an indicator that displays the Period 1 daily open price ona 4 HOUR chart. I've tried the following, but none of them work correctly iOpen("GBPJPY",PERIOD_D1,i); iMA("GBPJPY",PERIOD_D1,1,0,MODE_EMA,PRICE_OPEN,i); The Daily open price continues to change or elevate through out...
Hello MT4 Gurus Any body here have indicator to creat EOD data folders from MT4 ststion i mean to creat a folder contain daily data only and other folder for 4hrs and 1hr data and other folder for data less than one hr period and these data uppdatedautomatically once the station be online ????...
Hi I was wondering what you guys do when running one EA over multiple charts. My EAhas global variables and clashes. How do you guys do this? Can I make a global variable that has a different nameevery time and how can I do this? L.
as the subject, thank you.
[Deleted]
Array created to grab all details for open and pending orders. Can call up arrayto display order information on the chart via the Comments function. However ArrayMinimumrefuses to grab the index for OrderProfit to display the single order with thegreatest floating loss. Please have a look? Here is...

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.