MQL4 and MetaTrader 4 - page 1076

hi frnds, am new to mt4. nw i need a EA code for RSI my condition is, RSI>40 means SELL and RSI<20 means BUy can u anybody help for me. am waiting for ur replay frnds.thank u
  Pair theory  (65   1 2 3 4 5 6 7)
The theory of trajectory pairs. A new analytical method. Simple pairs. Anti-pairs. Continuation points. Fracture points. The theory is based on an examination of the price movements of the following instruments: Gazprom shares, data source: Moscow Stock Exchange, period: 1999, USD/JPY currency
I am assisting another trading coach to teach some junior traders about FX trading, systems analysis, backtesting etc. I am looking for sample EAs which "don't work" to use as examples for them. I have written some material for the students, but it would be more interesting for them to see other...
I want to compare the price of the EURUSD , for example, with the previous second or minute price. How can I do this? I try to use a while loop like this, for compare infinite times, but this code is very slowly and as time goes on is even slower : double AskAnt = Ask; double AskAct = Ask;
[Deleted]
Hello, I coded already an EA and I like to add, a function where it will save the Statistic.htm file with the current status to harddisk. Is that somehow possible? It is very tiring, always going to the "Account History" and right click "Save as Report" Or maybe it is also possible, automatically...
Hi, I'm writing a script for calculating the MAE/MFE (maximum adverse excursion, maximum favorable excursion) with the strategy tester. So far, my script works great for currency pairs that are either quoted in USD (ie - GBPUSD, EURUSD, etc) or when the USD is the base (ie - USDJPY). By the way, my...
Kindly assist me with (if any Books or script needed to study programming Indicators) material to understudies Programming and compilation of indicator on meta Trader 4 Thanks a million Adesam adesam@gmail.com
hi how i can calculate Profit/Loss ($) in each pip movement in Market in following Currency : I have one order with (+20 pip) Profit and LotSize (0.04 ) in each following Currency . EURUSD (Profit = ? $) USDJPY (Profit = ? $) GBPJPY (Profit = ? $) thanks
[Deleted]
I have a indicator to show same broker info in screen. But I have a problem with this indi, it work fine in alpari uk, but not working is several other broker, as fxcm!! Α programmer can see what went wrong with this indicator...
void Function2_b(){    if (Use_TP1==false)return;      int i; int MAGIC2;  bool tp1_allowed= true;       for(i = OrdersTotal()-1; i >= 0 ; i--)             {         OrderSelect(i,SELECT_BY_POS);                   MAGIC2 = OrderMagicNumber();                     if (OrderMagicNumber() ==...
[Deleted]
Hi all I just finnished backtesting an EA, and it works, so now I am trying forward testing, but whenever a signal occurs and it buys or sells, I get error 130, Invalid stops, does anyone have a tips on how I can figure that one out? Last time this happend: 2012.01.25 14:00:34 EasyMoney EURUSD...
I have been testing a new EA that I wrote on some test data in the MT4 tester and have some promising results. The EA trades only at certain specific times (hour) and now I am wondering which GMT the dates that are linked to my test data are using? For examle I can have data from my own broker, data...
[Deleted]
Hi I am trying to add a functino to my EA that shows the highest and lowest RSI values, I am new to coding but have come up with this: double Rsi_hi, Rsi_lo(int shift=0){    Rsi_hi = MathMax(iRSI(Symbol(),Period(),RsiPeriod,0,shift));  Rsi_lo = MathMin(iRSI(Symbol(),Period(),RsiPeriod,0,shift));...
[Deleted]
Hello folks. I'm making calculations for the box size according to H1. So if my chart is set on H1 while the box is drawn I'm fine. If I'm on another timeframe, I'm messed up, because the box is drawn according to the candles and not time. How can I tell in the code to draw the box on H1, no matter...
[Deleted]
  Alert As Object  (1)
Can someone help explain why this does not work? extern int AccountWarningLevel = 500; int start() { double EquityMarginLevel = AccountStopoutLevel(); if (EquityMarginLevel < AccountWarningLevel) { ObjectCreate("Warning",OBJ_LABEL, 0, 0, 0); ObjectSet ("Warning",...
Hi, I wanted to see if anyone knows how to load an ea onto a chart and trade on multiple currency pairs at the same time. Can this be done? I understand that I can place the ea on more than one chart, then keep up with all trades based on magic numbers. Just curious.
  #include  (18   1 2)
Hey all. This is from a newby to mt4 programming. I have an EA I had programmed (I have the source code). That EA uses the #include command to include both variable and function files which are stored in the same directory that the EA is installed in (terminal/experts). The format for that...
Hello, I am using 3 line break method as one of the confirmers for my trades. I have found an indicator in the codebase section (link: https://www.mql5.com/en/code/9849) but struggle to understand how to turn it into and EA. I mean I have copied the code into a new EA document, and even entered...
[Deleted]
Need assistance to convert the following MT4 indicator to MT5, I've tried converting from MT4 to MT5 but no avail, still unable to run mq5 indicators due to some errors. I've attached the mt4 and mt5 indicators. I'd appreciate if you can help me and send an email to hoffman2503 (yahoo) If you can...
[Deleted]
Hi, I am was using OANDA MT4 and this morning i wasn't able to connect. Oanda support informed me to uninstall the app and reinstalled it. It worked fine for the first time then when I close and re-open it my old settings come back from the previous install. I did the following trouble shooting...
Hi, I can't find the possibility to close only the half of my position. With OrderModify() I can only modify the hole position
[Deleted]
Given this: Close[iHighest(NULL,0,MODE_HIGH,nLength,1)]); //<---- get highest close Is there a way to get the shift of the above bar using a combination of ibarshift() iTime() etc? Without using a loop?
[Deleted]
Hello. I draw a rectangle object on my Chart in H1. ObjectCreate("Box", OBJ_RECTANGLE,0, ...) If I change to another timeframe on chart, the object is not shown. If I go back to H1 it's gone too. Any ideas, why? I delete this object in init(), deinit(). But neither shouold be executed, changing the...
Hello I have expert advisor to the following modification: The expert works martingale type, give orders, 0.10, 0.20, 0.30,0.40, when you have many open orders, sometimes you can not close them all, because the price has changed. I need to change the advisor in this function whenever reaches the...
  error 130  (2)
hello, can someone explain to me why the system generates error 130 invalid_stops with stoploss of 100 pips? Thank you!
I run a ' homemade' expert advisor on demo. And use it on different charts, also i use for each chart different indicators for the expert advisor. Now i have 7 charts running, so 7 times the ' same' expert advisor. All of them are profitable. How do i know, without sitting the whole day behind my...
Hi, does anyone know how to use "iCCIOnArray()" in the way listed below? 1. iCCI period 10, shift 0, crosses over the "100". Wait... 2. Next, iCCI period 10, shift 0, crosses back below the "100". Place an order. I have discovered the documentation: iCCIOnArray(ExtBuffer,total,12,0)>iCCI(NULL,0,20...
hello guys, i've just come up with an idea of trading strategy ... well, my strategy is to double the lot size if the last trade was loss (s/l was hit), and if there was a profit trade (t/p was hit) then the lot should normalize to initial lot size. The EA should open the trade randomly with custom
I have been using the following code to select an open order in the client terminal: for(int i=0;i<OrdersTotal();i++){ if(OrderSelect(ticket,SELECT_BY_TICKET)==true)   { I have an EA running on several currency pairs but only allowed one trade per currency pair. Do i really need to use the loop...
Hello every1 I'm working with OANDA MT4 Ver: 4 Build 406. I have an EA that checks for closed orders in the History Pool whenever there's an order closed. Sometimes 2 new orders are spawned in the history pool for each order i close. One is the order i have closed and the other is the interest on it...