[Deleted]
I wanna mention a trading strategy that combine considering swap fixed income and currency pair Hedge. As we know, AUD has higher interest rate compared to USD, JPY, or EUR. and CAD has a middle interest rate. If we hold a position for a long time, swap as kinda fixed income is very considerable....
[Deleted]
Hello! As I mentioned in the subject, i wan't to place buttons on a chart . I know that there are similar posts on this forum, but i can't find the answer to my question. I think that buttons must be provided in such a .dll file, right? And use it in a mql4-script? For learning and testing proposes
[Deleted]
Hi ya.. I was hoping someone could help please.. When using the rectangle tool in MT4 it might show up for few seconds then disappear and won't show on other TF's at all??..however when using triangle or Ellipse tool they stay on the page and other TF's.. Would any one know how to resolve this...
[Deleted]
Hello Everyone, I have have spent all of my life trying to put the right indicators together for the best result; however, for some odd reason my Metatrader has stopped working on Windows 8. I was wondering if anyone in here happens to know in what folder Metatrader keeps the indicators that you...
Hello everyone, This may be a simple question, but I am new to programming MQL4 and appreciate the patience. I have conducted a script to take a trade, and the compilation said 0 errors. However when I add it to the chart, nothing happens. The journal records it successfully, but no trade is taken....
[Deleted]
May i know how should i fix this problem? i googled the error it says it can be fixed by adding RefreshRates() because the bid /ask values are outdated, i added the refresh function to my code but the same error still jumps out OrderClose error 138
No idea is this the place to ask but here is the deal: Is there a price crossing MA EA with the following: BUY set up: 1. Price crossing certain MA 2. BAR CLOSING PASS THE MA 3. Entry on the break of the high of the closed bar with variable for how many pips from the high The Sell has reversed rules...
Dear Community, I have a question: If I test my expert advisor in the visual mode (every tick mode), then the closed/modified positions are shown too late in the results-tab of the strategy tester. I can see the trades in the chart but not in the results-tab. I get the results delayed and MetaTrader...
please help me with this icustom condition? it should open buy & sell orders ;-) two1 = iCustom (NULL,0,"fx4",30,false,true, 4,0); two2 = iCustom (NULL,0,"fx4",30,false,true, 5,0); if (Bid<two2) sign1=1; if (Ask>two1) sign1=-1; DECOMPILED (stolen) CODE REMOVED
Hello, Does anyone know when Metaquotes releases the next batch of history files? Today it is not possible to download for year 2012. Regards, Attila
Hi, I am looking to create an email alert or sound alert programme? It is simply 3 moving averages , 20ma ,100ma and 200ma. I am looking to get an email alert when the 20 crosses the 100 which is above the 200 for a buy and the opposite for a sell. Is this something you can do? If so I would be
Take a parabolic vulgaris. Slow it down a bit (0.01/0.2). When the parabolic changes its direction (moves over the price), we open a pair of orders - Buy and Sell. The lots are the same. At the next jump of the parabolic, we close the order that is in the plus position. We wait for the next jump and
Hello, I'm searching for indicators/ functions which handle Voigt's trailing stop regarding Innenstäbe. I don't know the english terms for all this Markttechnik stuff. Have you seen something like that in this code base?
Does anyone know of a customized Amazing Forex System EA v1.1.8 that will reenter the entry order if timed out? Any testing done with such a system? Thanks!
Today an article Charts without "holes" was published, which describes in detail the algorithm for filling in missing bars. There was so much "shouting" (and just statements) on the forum in favour of such charts that I just couldn't help but look into the matter =) So, let's try it and make
Greetings, I built a part in my sound() routine that will force 'full play' of the file it plays (some of them are more the 5 sec). It does it by extracting the length part that I added to the filename as [6] meaning - 6 sec full play (example: 'time to TP.wav' -> time to TP[6].wav ) Well, in most...
[Deleted]
Hi looking for help with an ea. I have an ea that closes all positions on a chart once a certian profit has been achieved but the problem is the profit setting is in $ and i want it in pips. I basically am using it to delete any pending hedge orders i have setup a couple of worries i have is if i...
[Deleted]
Is there a way to find the start of a new period? For example, on a 15 minute chart, the start of a new period? Thanks!
Hi All, This is the first time I am encountering such a problem: I downloaded FXDD MT4 platform several months ago after some time the trial period finished .So couple of days ago I erased the FXDD MT4 from my computer/ C including my personal details.Again yesterday I downloaded the MT4 from...
Hi all. I need help. Do you know the Ea which sends alarm on MT4, and an email when the price touches the Moving Average. Im Trading with siple strategy: i will open and close sell/buy position when price touch Moving average . I pay for a good Ea which will send an alarm to me. I would like to be...
[Deleted]
After much struggling with passing strings to and from MQL4 I found a way to do it by passing arrays of strings. The problem now, if you can even call it a problem ,is that the logs are falsely reporting an error. 2013.01.31 13:37:59 VNetSigFeed EURUSD,H4: function '__winhttp_WinHttpQueryOption'...
Hi I ve got an indicator that displays some values below the chart in a separate window after doing a few calculations. Now, i ve got two main problems. The first problem that occurs is that during the calculations some values sometimes do something like a spike. Cause of that although the indicator...
[Deleted]
This might sound funny but it is real when my if operator is if (CurrentRSI > UpperBound && MarketInfo(Symbol(), MODE_BID) < MA200) { everything goes normal except that i keep on losing money at stoploss but when i add brackets inside it if ((CurrentRSI > UpperBound) &&...
Hi, I want use StringConcatenate() to generate below string: res="EURUSD", For EURUSD, I want use Symbol() function, How I can add "" to this? Regards;
Apologies in advance if this is a newbie question, but..... I want to be able to find the lowest close price of a currency in the last x months. iLowest & iLow do the trick for me. Great. But now I want to find the same data for another currency pair, one which doesn't have a chart loaded. Is that...
Hello I'm using a practice account with OANDA and MT4 plateform. I'm creating some report of my own and i got a trouble with LOT size on USDNOK. I calculate the profit like : (open price - deal close price ) * 1000. All my lots are 0.01. It works for USDEUR and USDCAD nut not for USDNOK. It...
Hello guys, I am getting very peculier behaviour from my code. The following snippet is where the problem occurs: if (OrderCloseTime()!=0) return (true);type = OrderType();success = false;lots = NormalizeCloseLotSize(OrderSymbol(),percentClose*OrderLots()/100);Print("Lots to close = " + lots);if...
I would appreciate it - someone to hide the stop loss, the EA thanks in advance
[Deleted]
MA200 = iMA(NULL, 1440, 200, 8,MODE_SMA,PRICE_CLOSE, 1); MA5 = iMA(NULL, 1440, 5, 8,MODE_SMA,PRICE_CLOSE, 1); 1440 sets the timeframe to 1Day, and 200 and 5 each represents the days for calculating moving average am i doing this right
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.