Thanks.
Can you recommend any reputable coders who might be interested in helping with this project?
Can you recommend any reputable coders who might be interested in helping with this project?
I recommend hiring someone through MQL5.com, Upwork, or a similar website.Thanks.
Can you recommend any reputable coders who might be interested in helping with this project?
Be very careful hiring an MQL5 freelancer ... They like to think of themselves as Developers (name on the tab) BUT, in reality, are only coders looking for a fast buck and not prepared to think outside of the box ... Fine if you know EXACTLY what you wantI recommend hiring someone through MQL5.com, Upwork, or a similar website.
There is no common tab on my versionThere is a little known feature in MetaTrader that allows you to restrict EAs trades to one side when you attach it to a chart:
View attachment 24322
//----There is no common tab on my version
As I understand it the facility has to be coded into the EA
What would happen to the existing trades when the "no-trade" time comes?Trading indices, for the most part, I would prefer the EA to avoid the Asian session ... Would it be possible to set the trading times ... As a starting point I am thinking of starting 16:30 (New York Open) to 23:00 (Lack of interest sets in) subject to optimisation
Preferably Start Hour - Start Minute - End Hour - End Minute
Talking of optimisation would it be possible to have the Time Frame in inputs
Thank you for your time
The direction restricting feature is absent from MT5. It's only present in MT4.There is no common tab on my version
View attachment 26347
As I understand it the facility has to be coded into the EA
Close all either TP or SL end of EA trading day (23:00) ... Next day EA waits for a cross after the EA startWhat would happen to the existing trades when the "no-trade" time comes?
It can be coded in ... have had to ask MQL5 "Developers" to include itThe direction restricting feature is absent from MT5. It's only present in MT4.
So, is it close all or wait for the TP/SL?Close all either TP or SL
Thanks, hayseed for the input ... Enivid set me straight (learn something new every day) ... ONLY there on MT4 platform//----
hey maverick..... it should be there...... even a blank ea should have the about, common and input sections..... no code on our part is required.......
you might try downloading it again......h
//-----
View attachment 26348
//----(learn something new every day) ...
And why they dropped offline charts ?now i'm curious as to why it was dropped in mt5
The EA was entering later in your backtest due to the MinDiff parameter. You can set to to zero if you want faster entries.The backtest results are strange and it is opening positions WAY WAY after the MA's cross.
This is a screenshot of one of the trades opened on the EURUSD 15M chart.
It opens the trade 21 bars after the MA's ACTUALLY cross, which is a good 5+ hours later. Even so, with my TP at 200 it should have STILL closed the trade in profit, but instead didn't close it until it became a loss. Have tried this with even minimum distance at 1 and still the same thing happens.
using Period 1: 9 EMA and Period 2: 21 EMA. Even if I reverse the periods, the same thing happens.
Something is broken here.
The EA was entering later in your backtest due to the MinDiff parameter. You can set to to zero if you want faster entries.
This trade was nowhere near 200 pips of profit for such a TP to trigger. This EA's parameters are in pips (which is explicitly stated on the EA's description page), not in points.
That's weird. Perhaps that was 1 bar "late" because it waits for the bars to finish forming before checking for the crossover?Even when I set it at 0, it was still entering trades late.
I coded it at the time when people generally expected for all parameters to be in pips.Ugh...that explains that on the pips/points thing...why would an EA be created in pips when points are so much more granular?