I was wondering if someone cold tell me how would program the following I want the ea to scan back the bars atleast a set value but lot more then a set value to see if there equal to or more of pips of a set value.
Hello. I am developing an EA that must work in more than one chart window due to that some part of the program analyzes the trend in one time frame and other part of the program does the same but in other timeframe. The aim is to avoid contradictory trades, because may be that in a 5 minute frame...
Hi, I have created CSV file that consists of such structure. I have about 10 000 rows with this type off data. datetime;string1;string2;string3;string4;string5; Semicola separetes each other column so that data would be readable. What I want to achieve is to be able read that data and do some...
Hi, I need to store the ticket from a short order while it's running... but my variable LastTicketShort_Scalp doesn't work? Please Help int LastTicketShort_Scalp = 0; int LastTicketLong_Scalp = 0; for (int za=OrdersTotal()-1; za >= 0; za --) { OrderSelect(za,...
Hi everyone, I am sure I am missing something basic here but after all online search still not sure why this would not work... I am trying to read iStochastic values from multiple time frames (i.e. M5,M15,H1) and then store them in global variables for later use. I am testing the cose on M5 chart...
Hello. I have 2 MA on my chart i.e. 50 and 100. And I wish that each time when they cross each other Arrow have to appear on chart (down arrow/up arrow). If 50 is above 100 then it have to show up arrow and vice versa. I have attached the template file please tell what changes i have...
When i start mt4 in the journal tab i get the error message 2013.09.16 00:27:04 '198699': Signal - different specification of symbol NZDUSD., signal provider has minimal volume 0.01, subscriber has 0.10 (and a few other similar messages) I was wondering, does this mean the minimum lot size of the...
Good Day... I would like to ask if RefreshRates will be enough to be used on an EA if a certain symbol is updating or not and it will give an alert if it is not for more than 5 minutes... Or there any functions that is precise to know whether a certain symbol is updating or not. Thank you very much....
[Deleted]
double SL,TP,onePip; int Ticket; onePip = 0.0001; if( (Symbol()=="EURJPY") || (Symbol()=="AUDJPY") || (Symbol()=="GBPJPY") || (Symbol()=="USDJPY") || (Symbol()=="CADJPY") || (Symbol()=="NZDJPY") ) { onePip = 0.01; } //check if price match double currentPrice; currentPrice =...
I don't know if I am the only one that has an issue with this. I find that whenever there is a long line of code included that is wider than my screen, I then have to keep scrolling left and right in order to read the rest of the page. Sometimes, especially with articles, this can be very irritating...
Maybe it's time to end the smoking room with political topics? We could do with non-political ones too
How would I progam the current value of stochastic say 45.500 into a variable and how would I program the past value of stochastic into a variable and then the diffenrence between the two into Variable. What Im trying to do is program and buy or sell action when there is a x value different beetween
[Deleted]
Hi guys.. I need some help here. Previously I ask a similar question and i got this reply below.. however when I try compile, there quite a lot of errors as the variables are not fully declare and I not sure if its work below. Just to ask how do I create a code or function that do the following....
Hello I have an indicator and am trying to get it to work in my Ea. 1st I tried to use I custom no buffer values then I inserted it into my Ea and nothing. Need some help thanks. Here is part of my code....
[Deleted]
Hi guy. Is there anyway for me to obtain the instantaneous value of the bar?
[Deleted]
!!!! with your help, i managed to place data within a user-defined array, but still do not know how to use all of the data ... my array has the price data of 100 bars, How I can make an average of these data?
[Deleted]
Hello Guys, I coded password on my expert advisor but i want to change the values to be seen in the input window as asterisk. The "link101" should be (*******) extern string PIN ="-------"; if(PIN != "link101") {Alert ("Invalid PIN");return(0);}...
[Deleted]
can someone tell me why this loop doesn't store the data? int h1; int h2; int h3; int b1; int b2; double t1[]; b1 = iHighest(NULL,PERIOD_H1,MODE_CLOSE,700,1); b2 = iLowest(NULL,PERIOD_H1,MODE_CLOSE,700,1); h1 = b2; h2 = b2; for(h1=b2;h1<b1+1;h1++) { for(h2=b2;h2<b1+1;h2++) { t1[h1] = iClose
I'm fairy new to programming EAs. I've part complied an EA which uses MT4 to open a trade for Forex pairs. To exit the trade I would like to use the output from an Indicator on Tradestation on the corresponding Forex future. i.e. trading from MT4, stoploss set in MT4 EA, tradestation signal closes...
[Deleted]
I can't see why this function doesn't work. //Creates strings like these:// yyyymmdd,hh:mm,o(4dp) ,h(4dp) ,l(4dp) ,c(4dp) ,Volume// 20130829,20:25,33.2050,33.2060,33.2030,33.2040,20string MakeInfoString(string symbol, int period, int Bar){ string Strline = TimeToStr( iTime(symbol,period,...
[Deleted]
first of all, sorry for my bad English. I have problems storing data in a user-defined array using a loop ... I can store data in each position of the array by itself, but I can not store data in an array using a loop. someone can show me how to do it with an example? thanks.
Hi, is it possible to put my own picture / bitmap / icon on the metatrader chart?! Or a alternative possibility can I load my own font to write on the chart? Thank you
double iHi;double xHig;double iLo;double xLo;double out=10;int i;int Range_n=4;double lotsize=0.1;double stoploss=1;double takeprofit=100;double bsl;double btp;double ssl;double stp;double magicnumber1=1111;double magicnumber2=2222;double k=0;static double giamua;static double giaban;double...
[Deleted]
For my EURUSD charts, the price gapped to around 0.1120 yesterday. At the time, pressing refresh didn't help at all. I have a script that uses iClose(), iOpen(), etc. to write the chart info to file, and it also got absurd prices. Today, after pressing refresh, the chart data became more plausible...
i developed one trading system in AMIBROKER. i want to apply same in MT4 FOR selected stocks/instruments....... <LINK REMOVED by MODERATOR> how can i? Any third party, who can help me or any paid service? I am new here....... pls guide..... urgently........waiting
if I use +GMToffset in start/stop hours it will not work ... how can this be solved? fex: int extern FromHour = 8;int extern ToHour = 14;int extern GMToffset = 1;if(Hour()>=FromHour+GMToffset && Hour()<=ToHour+GMToffset) return(0);
Hi MQLers, after I have called OrderSelect, a couple of instructions later (like OrderType, OrderSymbol, ...) I am calling OrderProfit and I doubt this call returns the correct information. Therefore my query goes - all of these Orderxxx are supposed to be performed on a 'selected order'. I do not...
[Deleted]
Can someone show me some code simple code that will allow me to capture the high and low of a Bar at a specified time? For example ... how do I capture the high and low of a bar at 1:00 GMT?
I am using the iMA() function, but the values of the data obtaining by the function only produce a price up to 4 decimal places when it should be displaying pipettes (fractions of a pip). For example, if aud/usd is at 0.91236, iMA only uses 0.9124. I want the EA to display all 5 digits.
[Deleted]
Trying to access data from Excel file using Excellink. All OK at first Tick when indicator dropped onto chart ie reads and writes to file but when I later try to access Excellink reads only 0 data value. Problem appears to be Handle which on 1st pass = 0 but on subsequent accesses = -1. Error code...
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.