Expert Advisors and Automated Trading - page 219

Hi guys, A few general questions about EAs, appreciate the help in advance: 1- I installed the EA on my laptop and I have several demo and real account active on my computer. Say that I drop the EA on one FX chart(i.e. activate the EA for that currency pair), will the EA place trade all the accounts
Hello everyone. I'm trying to get the Object Text, specifically the Anchor text from a custom indicator to use it as an input signal. I'm having some errors and I can't fix them. Could someone help me
From what I understand the current modelling of price data using 1 minute OHLC, sends 4 ticks (Open,High,Low,Close) of the 1 minute bar to the EA. Is there a way to send these 4 ticks from another time frame, for example the OHLC of 1 hour bars to the EA? My reasoning being that it would be the most
Hello All As a new user, I'm using MQL5 module in Python! All things are good, But a problem i have. I couldn't find any way to go through symbols at Market watch! The module's methods just list all instruments in the Metatrader and therefor just going through all instruments is possible! Something
Dear I want to build connection between EA and my member's cabinet for rent EA For example 1. Rent fee for a month is $10 2. Member deposit $20 to their wallet 3. Every month, their wallet balance will reduce $10 for rental fee then the EA will start open posisition 4. But, if their wallet out of
Anyone ported simdjson into MQL5? If not, can someone help in porting please? https://github.com/simdjson/simdjson/tree/master/singleheader In the above, only two files require porting: simdjson.cpp and simdjson.h I can volunteer to port this, however it would be good if someone can guide me
What are the best practices and how-tos in porting C++ code into MQL5, with minimal changes? Are there ready made preprocessors that I can use? Also, I do not see a way to bind sockets in MQL5, is it not possible
I was trying to register a VPS account through NT4 terminal and get attached error message, that no server was found. I was logged in successfully into my MQL5 community account. I an very thankful if someone can guide me how to solve this issue. Thank you very much
I have a mql5  EA which sends market orders with the command OrderSend(request,result) The MqlTradeRequest request object has the following attributes: request.action = TRADE_ACTION_DEAL; (market execution) request.deviation=0; (I prefer not executing the trade rather than executing it with any...
Although I like to follow trades while developing my EA's. so checking indicators etc... Do I need to migrate the indicators on my own charts to the mql5 VPS, or just the charts plus the EA's? thanks
I am not sure where is the best place to suggest for the improvement to the platform. Here is the suggestion: When adding a service, at the moment it opens a dialog that allow inputting the parameters, but there is nothing to input the name of the service instance. The renaming needs to be done
I build a EA with FFCAL indicator for news filter It not read any highlight data in backtest. Is it normal. News filter cannot work in backtest
Dear all, I would like to test my EA using the Tester with intraday bars. Consequently, I need to start processing with an intraday bar. However, the Tester does not allow me to declare an intraday start bar: there is only the possibility of inserting a date without the time. Is there a solution for
I recently got an ea pipbolt.io on the stochastic osc settings, I changed the parameters and I set my tp at 250points not even up to one 1pip, but still I'm still making loss and my capital is going down. Please anyone to help me
What does a coder being loaded mean
Hi there community
I have two positions and I do not understand why my code modify both stop loss to the same level for ( int i = PositionsTotal () - 1 ; i >= 0 ; i--) { if (position.SelectByIndex(i) && position. Symbol () == _Symbol && position.Magic() == MagicNum) { if
MQL5 Team I have been exploring the Services in MT5 platform and I found that there is no graceful way to stop a service and stopping it causes 'Abnormal termination' error. Can you please add OnDeinit(reason) to Services so that we can do cleanups and exit the loop of OnStart() gracefully please
Since support only handles financial question, I'm asking here: Why is Reaper removed from MT4 market? As a developer this is very frustrating as the product is doing very well, and customers expect support through the website
Is there a list of developers somewhere
Hi there, I currently work on getting CalendarEvents and CalendarValues becasue I want to make a bot which avoids huge events such as CES and FOMC. And checked the page of CalendarValueHistroy and coded below: string US_code= "US" ; MqlCalendarValue values[]; datetime date_from=
If I hire a coder do they make their identity known to me
Hi Guys, I want to use a "score" called "MFSCore" in my EA that depends on the success of the last trades. My Problem is simple but annoying. The Code doesn't work at all. Am doing somethin obviously wrong? int MarkFisherScore ( ulong LastMainTradeTicketNr, char SetOrGet) //0 = Set new Mark Fisher
I'm looking for a robot that can interact with telegram FX signals that i receive. Is this even possible
Incomprehensible !!! I make an EA, compile it and it works perfectly. I take the ".ex5" file to another computer and it doesn't work. But if I put the source file on that computer and compile it, it works. I can't quite understand why this can happen. Somebody could help me? Thanks a lot
hii...while using ea how to squareoff all open position when markets is against your order
Hey guys, I'm busting my head a couple of days on this issue, And I couldn't find the answer wherever I looked, So I would really appreciate any input you have. Basically I try to replicate to functionality of mql4's iMAOnArray in mql5 I have tried using both MetaQuotes' built-in function of
Hi, Was wondering if anyone knows of an EA out there (or if it would be possible to build an EA) that could automatically apply a stop loss of a fixed percent of equity to signals if they don't feature a stop loss. Thanks
Hi Guys, Hoping someone can point out where I'm going wrong. I'm trying to get the current tick value of some indicators (PAR in the example below). I assume it's doable since I can see the chart indicator moving in response to the tick changes on the live chart. I can get the closing indicator