Hi I generate this script by Stochastic indicator but i want to add level like 20-80 to use it as condition for sell or buy . can any one help me to do this ? this is a file of script >>>> https://goo.gl/mdBdp2 Ziad AR
[Deleted]
Hi everyone, I am sure anyone who has used MT4 often especially to do long backtests knows how big the log files can get ! I have coded a batch file which deletes the biggest files from MT4 (you need to close the program first) thought I would share it... Just place it in your metatrader folder and...
can anyone tell me how the swap works? does it ever leave once it is imposed?
Hi, I'm coding in MT5 about a complex topic : I would like to calcul a SMA of a RSI of a specific serie. the serie is calculated like that : (close + (high+low)/2)/2. Finally I would like to make : out = sma(rsi(serie,14)) based on current symbol and current timeframe. Could someone help me by...
I am trying to connect Metatrader4 with Twilio (voice and messaging service), via DLL. The call goes something like this: MT4 expert script -> C++/CLI DLL -> C# DLL -> Twilio I have successfully tested both dlls using a (C#) console application - the program calls...
i am trying to access mymoney but support keeps telling me to contact my account manager. I cannot contact him so need to know how to close trades so I can get money please some one tell a total beginner
Hey guys, ive found several threads about how to calculate the necessary margin in mt4 to open a position but i cant find the function to calculate it in mql5. i want to know how to calculate how much margin it costs to open 0.1 or 1 LOT for a _Symbol without opening a Trade. regards
Hi Guys, Signal is using GBPUSD. but my broker doesnt have DOT at the end of the currency pair. Can you please help me how i will convert it? Or MT4 already have this feature? Thanks!
How can we install a trailing stop utility that will run without closing the EA that is running ?
Step to reproduce the error: your account is in EUR, you create a custom symbol for EURUSD to import custom data(copying the standard one) So you have: Base Currency: EUR, Profit currency: USD, Margin currency: EUR When you run the strategy tester MetaTrader search a symbol to calculate...
Hi, I deposited £250 in a GMO Trading account today. What do I do next please? Ed
Looking around for a "good" trading signal to copy, I read about the Trading History Volume. if it says 0.02, does that mean that the system will open an order with 2000 (0.02 x 100,000) which is basically 2 micro lots? If that is true, then how can the Account > Growth > YTD be cumulative of all...
Couldsomebody help me to automatize following MQL5 calculations? I want toknow for each symbol, PIPS to win/lose each time JUST 1€, assuming 0,01 lots in eachposition. Looking atthe image, I have found and approximation of 13 PIPS, but I want to do thatautomatically using MQL5 functions. Thanks
Hi, Im testing out this MT5 EA but its not taking trades on a Live Market. Auto-Trading is on, the Strategy Tester works fine but still nothing, please assist. Thank you. Arnold
I recently subscribed with a signal supplier in MQL5. Shikari. under MQL5 "ceylonmoney3" user name. Paid 30USD for 1 month subscription. I opened demo account with MT4 200,000USD. Standard. But signal supplier has nano account. All configured. But it doesn't sync with my account. But i already have...
Hi, Im looking for EA using Stochastic and moving average (EMA) Buy condition When Moving Average (EMA) touch 20% (of stochastic) buy trade start TP - 80% of stochastic SL - 10% of stochastic Sell condition When Moving Average (EMA) touch 80% (of stochastic) sell trade start TP - 10% of stochastic
Hi, how can i check the pending orders become market orders or not in mql5? i run the below function to see it has triggered or not. But i find that it always print "Have Pend Orders" even when the orders become buy or sell. anyone can help? bool OrderSearch(){ total_p=false; int total =...
Hi, Can anyone tell me if it is possible to move the location of an MQL purchased indicator into the indicators file of MT4 so that an EA can reference the output data?
Hello.. I have got a signal provider.... but the date of opened trades are not the same with my trades... I see the execution of trades just when I see my computer running MT4.... In my phone I dont see when the signal provider enters... Do you know how to really get synchronization? I have tried
The well-known formula for the RSI is after some preparation: if(negative==0.0) RSIBuffer[i]=0.0; else RSIBuffer[i]=100.0-100.0/(1+positive/negative); But I get the same results with this: RSIBuffer[i] = 100.0 * positive /(positive+negative); No danger of division by zero as positive and...
The history of trade is (HT) 1 year; average monthly profit (AMP) 5%; the maximum drawdown (MD) is 35%; cost of subscription (CS) 80 $; number of subscribers (NS) 6, (HT) 3 months; (AMP) 32%; (MD) 39%; (CS) 30 $; (NS)90, (HT) 3 years; (AMP) 3%; (MD) 65%; (CS) 120 $; (NS) 0, (HT) 6 months; (AMP)...
Is there a list of brokers anywhere that allow the use of the web terminal? My current one does not.
Hello, my friend has created a signal on MQL5 and he told me to leave my computer on 24/24 unless you pay a fps. I asked him if we leave the phone on if it works and he did not know the answer. Will the signals go back into my trading account if my computer is closed and my Samsung S8 + phone is...
Hi, I participated in ATC 2008 when it was mql4. http://championship.mql4.com/2008/users/kausti/reports Now the link is not working at all. I know it's been a while. I never really graduated to mql5 after some false starts back in the day. Some oldies might remember that shit? Anyhow, I would still...
I am a Chinese programmer. Do you have any foreign friends to make friends with?Chinese culture, Chinese language, Chinese life
The upgrade to the new platform is coinciding with the 10th Anniversary of RiddiSiddhi Bullions Limited's RSBL Spot system. RSBL is India's leading bullion company, with a turnover of over $1.5 billion. Its RSBL Spot is one of the few platforms supporting physical gold and silver dealings and...
Good morning Community! I am struggling to calculate the loss/win of a trade for the SP500 when account currency is in EUR. DAX example: Buy in: 12000, Buy out: 12050 -> 50 Points; My Broker sets 1 Point equal to 25 EUR. Having a lot size of 0.1 the win is: 50 * 25 * 0.1 = 125 EUR The same way, I...
LOOKING FOR AN A EA THAT MANAGES ALL POSITION TRADES TRAILING STOP TO BREAK EVEN ONLY THEN DOES NOT TRAIL ANY FURTHER. SOUND SIMPLE BUT I HAVEN'T FOUND AN EA TO SUCH YET!
Hey all, it is possible to load new created files to a running instance. Like if i have a EA which runs for a long time, and the state of the variables is "ideal" and which i don't want to interrupt. Now, for example i create a new indicator. Is it possible to use the include command to load the...
Hey all, i have a understanding question. When i create a struct which has a object and a loaded indicator in it, like this: // define structstruct foobar { MyClass obj; int maHandleID;}// create variablefoobar foo;// assign objectMyClass *foo.obj = new MyClass();// assign...

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.