Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
  • Información
1 año
experiencia
0
productos
0
versiones demo
0
trabajos
0
señales
0
suscriptores
Hello
MQL5 is a vast and very complete language, covering many subjects.

Each on his own, it will be very difficult to create a profitable EA as the subjects to cover are vast.

I specialized in the creation of multi timeframe indicators because I think it is one of the keys to success.

Bring your developer skills. Together we have a greater chance of being able to create several profitable EAs
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
Hello

I received a request to make a Trix MTF in MQL5.

I don't know anything about this indicator, nor how to use it, but he knows it and thinks he can make money with it, so I made it for him for free and we will share the EA if it works.

The indicator is called "below" because I thought I could put it on the chart as well, but no
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
I just finished it.
It's a multi timeframe MACD.

On its 0 line, it gives additional information compared to the classic MACD.

I don't know if it will be useful, but in fact it's just to inform the trader or the EA on the orientation of the 2 average EMAs that make up the MACD.

You want to try it, it's free

If you need an MTF indicator, I'm interested in doing it for free against exchange
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
imagine you have a code to make a moving average

Imagine you need 4 averages for your EA with different values ​​5, 20, 50 and 200 for example.

Well some of our illustrious moderators and elders of this community prefer and advise to make 4 compilations of your code with the 4 values ​​to make resources for your EA, rather than making 4 icustom that will call the same code.

and it is me who is not, according to them, logical.

and they are capable of giving you a reprimanding speech.

and then there are all their disciples who worship them as living gods who come to predict to you that without the voice of Gods, you will be damned to wander in the labyrinths of MQL5.

Much better alone than with them.
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy 2024.10.20
hey and imagine when these clowns see a bug in the code.
What should they do?
As much compilation as necessary to bring their EA into compliance!!!! lol Whereas with a single code and an icustom on it, well all their EA would be up to date in an instant.
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
Moderated twice in less than 10 minutes, on the same topic on the forum.

This is a record. I can't believe the number of moderation rules.

Way too many for me.

With each post I make, a moderation.

I might as well stop posting,
I'll save time and give less work to the mods
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
Hello.
If like us, you think that the multi timeframe can bring additional details to find several profitable EAs, join our development team.

Here is a very famous free Bollinger bands in multi timeframe for our members.

A thought for this anniversary of the fateful September 11.
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
Our developer team is starting to get good results with multi timeframe indicators.

Join us.

Here is a modified version of the RSI.
An average (SMA, SMMA, EMA and LWMA of your choice) has been added to smooth the RSI signal.

Good developments, good trades
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
Hello
Have a nice weekend?
Here is the multi timeframe version of the iTEMA() function

So it is available to do tests in your EAs. Get in touch
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
Hello
I just finished the accumulation/distribution in multi timeframe.

If you want to have it to make an EA, I can send you the indicator
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
A Multi Timeframe Moving Average

I offer you this indicator for free to display a moving average for your EAs in exchange for the results.

I am also looking for people to test the indicators in advance for debugging
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
If you are an EA developer, I offer you a free multi timeframe RSI under conditions Get in touch
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
Hello
That's it, MQL5.com gives me a year of experience.

A few weeks ago, I would have almost celebrated it, today I don't care anymore.
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy 2024.08.16
For the record
Turned on for fun by a deaf person
https://www.mql5.com/en/forum/469390
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
This indicator will allow me to see:
The highest, the lowest, the closing and the opening of the bar which changes color according to the values, green or red, from the previous day to daily.

On the current bar, we can see the current price, the color of the daily bar
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
Good morning
more than enough searching for OORs

here is the first draft of a function

replace Error() with Alert() or your own error display functions

bool OORCheck( const string p_Function,
const int p_ArraySize,
const string p_ArrayName,
const int p_Index,
const string p_IndexName
)

{
if ( p_Index < 0) {
Error( StringFormat("%s: Index %s %d is out of range in %s. It is less than 0.",
p_Function, p_IndexName, p_Index, p_ArrayName));
return false;
}

if ( p_Index > p_ArraySize) {

Error( StringFormat("%s: Index %s %d is out of range in %s. It is greater than or equal to array size %d.",
p_Function, p_IndexName, p_Index, p_ArrayName, p_ArraySize));
return false;
}
return true;
}
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy 2024.08.10
Exemple of use OORCheck( __FUNCTION__, ArraySize( pa_Buffer), "pa_ Buffer", p_beg, "p_ beg"); OORCheck( __FUNCTION__, ArraySize( pa_Buffer), "pa_ Buffer", p_end, "p_ end"); OORCheck( __FUNCTION__, ArraySize( pa_BufferClr), "pa_ Buffer Clr", p_beg, "p_ beg"); OORCheck( __FUNCTION__, ArraySize( pa_BufferClr), "pa_ Buffer Clr", p_end, "p_ end");
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
The multi timeframe won't have offered me anything.
I made all my indicators so I need for my strategy.

The surprise I wasn't expecting is.
When you call the MTF indicator buffer, and indeed the copybuffer

int CopyBuffer(
int indicator_handle, // indicator handle
int buffer_num, // indicator buffer number
int start_pos, // start position
int count, // amount to copy
double buffer[] // target array to copy
);

does not wait for int count = 1 but the complete segment which corresponds to as many bars as it takes to make your TF....

This means that it must be recalculated each time on the icustom side....
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
I'm quite divided.
This is a part of my trend system, in this case the immediate trend.
The longer trend is given by another indicator

The colored segment represents a notable threshold in D1, the graph works on the M30.
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy
soon a nice rise on the eurusd in M1 at the reversal of the EMA 20? https://charts.mql5.com/40/163/eurusd-m1-admirals-group-as-soon-a-nice-rise-on-the-in-at-the.png
Gerard Willia G J B M Dinh Sy
Gerard Willia G J B M Dinh Sy 2024.07.25
At last I had my movement