According to this link, https://www.mql5.com/en/docs/files/fileopen, if I use FileOpen my file should be created under my MQL5\files\ directory, but I do not have a files directory. Under \MQL5 I have \experts, \images, \include, \indicators, \scripts. I am not getting an error from an invalid...
I have been using it fine for the past month and suddently it stopps working suddenly. Please help and see the attached screenshot for the journal for the VPS and my MT4 journal.
Hi there, I started with a complex strategy and it would not trade in any tests. So I made simpler ones, right down to a simple average trader. 1 indicator, 1 symbol. (XRPBTC) I didn't play with any settings on these later attempts, just ran the generate, added the most basic things I could, and I...
Hi, I am new to programming in MQL and have had a good look on the site to try and answer this question but to no avail. I only want to enter one trade per candle but if, on the next candle, the signal still holds the EA should make another trade up to a maximum number of lots. I think I...
Hi, im using standard Mq5 library CPositionInfo I would like to ask what is the difference between CPositionInfo.identifier() and CPositionInfo.Ticket(); I have found that some ppl are using Ticket(), but I didnt found it in code. But it is working. For me it looks those values are same. Thank you.
Can I declare variables in a loop, each with a different name? for(int i=0; i<OrdersTotal(); i++) { if(OrderSelect(i, SELECT_BY_POS)) { double var + OrderTicket() = OrderOpenPrice() } } So I would end up with a variable for each order ie. varXXXXXXXX = 1.2548 varYYYYYYYY = 0.8849...
Hello, My broker doesn't allow automatic trading , but I can send buy/sell commands(also conditional commands) manually. So I like to know, if I write an external program, how can I send buy/sell commands from my external program to my MT5
Every strategy and every EA can burn your account. FACT. Best way to use them is to have several different EAs on different account and running them simultaneously using a shielded money management strategy with weekly withdrawals and weekly recalculation of the trading investment. WHAT ARE THE TOP
Hello, The MT4 Optimizer returns 0. What could be the problem? Of course, the robot works on a normal test. More interesting: At the same setting, the robot gives a normal value for EURUSD and 0 for the GBPJPY in the optimizer. Thank you very much, Szabolcs
how would I change the open price of my buy order to lets say +10 from current price or something? I went to the part next to ask, and changed the 50 but it did not do anything. I went and read an article on this site and still could not figure it out if(TestBuy) ord=OrderSend(Symbol(),OP_BUY,0.1...
hey :) I have an EA that creates signals for possible buy/sell entries by placing an arrow above/under the signal candle. my issue is, that depending on the chart wjere the EA is loaded thr arrows are placed too far away or too closely. please review attached images for examples. In case of a sell...
Looking for some suggestions on things I might troubleshoot. I wrote an EA that is running as expected in my MT4 terminal. When I upload the EA to the VPS virtual server, buy and sell orders are placed, but it will "forget" that automated trading is allowed and throw error 4109 when it tries to...
Hello All, I want to make an EA that open position (buy or sell) in exact price, I use OrderSend(...) function like below: if(MarketInfo(Symbol(),MODE_BID)==OpenPrice-PIP){ PendSell(Symbol(),lot,MarketInfo(Symbol(),MODE_BID),MagicNumber);}if(MarketInfo(Symbol()...
Suppose i start some EA in 1h time frame, and then some where in the code the isNewBar() function gets called, it will Print 28-12-2018 22:00:00 for instance... And then i change the time frame to 1m and then the isNewBar() function keeps printing 28-12-2018 22:00:00 I was expecting something like...
Hi All I am thinking about how to write an EA to manage trailing stops for all open orders. It will be attached to a single chart but will manage orders for every symbol. It does not make sense to run the code from OnTick() because it will only execute when the attached chart has a new tick and may...
I am showing my age here but I remember back in the 80's making programs using basic ... Remember that? I look at today's code and it looks like a foreign language. My question is ... Are any of the 'builder' utilities any good? (Simple) ... I have a working manual system but can't pay for...
Hi, I have rectangles on my chart and I want to be able to grab their price levels in my EA but I cannot seem to extract that from the existing object. I can only change them. Does anyone know how to get the price levels of an existing rectangle? The following returns "Name: Rectangle 789 Price:...
Does anyone here know if there is a bridge from Neuroshell Trader to Metatrader 5 (in both directions)? The interface should send data from Metatrader 5 to Neuroshell and corresponding trade commands and queries in both directions. There is a bridge from the manufacturer to Metatrader 4, but...
Hi. Last week, I experienced one my subscribed signal made a huge error leading the big loss. The worst part is that somehow it repeated opening and closing the same trade on my end, and if I didn't manually disable the signal, it would have blown my whole account. My question is, is there any way
I want to be prepared for when the SH*T hits the FOREX fan. I have been running a bunch of EA's for a few months now. They have been behaving beautifully but they are only prepared for normal, stable market conditions. Thet are opening and closing trades all the time but at any given moment I...
When i backtest i dont see equity line dropping but in visual mode it has huge DD does anyone know why? I attached pic
Hello Traders! I'm looking for an EA or maybe a Script?, that allows me to enter same Take Profit Levels, that repositioning the Stop Loss Level when the Take Profit levels are reached. Let me explain: for example, trade Setup: I would like to trade the pair EUR/USD on the short side (sell) SL: 1...
[Deleted]
Dear Sir, I have a MQL5 VPS, and i have synchronized my EA with my MT5 on my VPS. My questions are 1) In my MT5 navigator, i saw the EA both run on my local MT5 and VPS (see screenshot below). Is this normal, should I removed the local EA in order to avoid conflict??? 2) In my local MT journal, it...
Hi . I'm new to forex trading . Looking to purchase a robot but need to configure it
hello use MTF cross Signal Arrow Indicator day time frame. EA use 15M chart when EA entry buy before day close if entry close EA entry again. but i want one signal one entry in a day no more entry EA can you help me for make that function how it possible if(iCustom(NULL,1440...
Hello All, I want to make an Expert that using market entry and market exit by below Indicator: when Indicator change color, Expert should enter market, I read about iCustom function, I test it with this indicator, But this function in this indicator only one double value output, How can I do this?...
Hello I have a simple mql code, I want to get current price and price of 20 seconds later in stratgy tester, Here is my code: int _time_waiting=0; int _PauseTime=TimeCurrent();void OnTick() {//---double current_bid = SymbolInfoDouble(_Symbol, SYMBOL_BID);double current_ask =...
Hello, I want to calculate my risk per trade relative to account balance (for example only risk 2% of balance per trade). Of course the stop loss is relative, lets imagine the Stop Loss variable will be changing and will use ATR for calculation. I have the expert ready but I need help with this code...
Hello, I have an indicator "myindi" and it gives up and down arrows(buffers 1 and 2). Now I try to make an EA using iCustom but I don't understand where I have to put these buffer numbers? #include <Trade\PositionInfo.mqh>#include <Trade\Trade.mqh>CPositionInfo m_position;...

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.