Floating gain meter MT4
199 USD
Versione demo scaricata:
24
Pubblicato:
6 ottobre 2022
Versione attuale:
1.20
Non hai trovato un robot adatto?
Ordina il tuo
su Freelance
Vai alla sezione Freelance
Ordina il tuo
su Freelance
Come acquistare un Robot di Trading o un indicatore
Esegui il tuo EA
hosting virtuale
hosting virtuale
Prova un indicatore/robot di trading prima di acquistarlo
Vuoi guadagnare nel Market?
Come presentare un prodotto per venderlo con successo
Ti stai perdendo delle opportunità di trading:
- App di trading gratuite
- Oltre 8.000 segnali per il copy trading
- Notizie economiche per esplorare i mercati finanziari
Registrazione
Accedi
Accetti la politica del sito e le condizioni d’uso
Se non hai un account, registrati

There is a bug in the expert, i am not able to read the buffer
2022.10.27 14:43:10.104 2021.01.07 05:00:00 Big Trend V140 GBPJPYi,H1: Float Gain Meter Buf0AchatCt Float0 9.3e-05 Float1 9.3e-05 Float2 9.000000000000001e-05 Float3 8.8999999
2022.10.27 14:45:28.608 2021.01.12 18:00:00 Big Trend V140 GBPJPYi,H1: Float Gain Meter Buf2AchatLt Float0 5.9e-05 Float1 5.2e-05 Float2 4.6e-05 Float3 4.1e-05
Can you correct that
Thank you
There is a bug in the expert, i am not able to read the buffer
2022.10.27 14:43:10.104 2021.01.07 05:00:00 Big Trend V140 GBPJPYi,H1: Float Gain Meter Buf0AchatCt Float0 9.3e-05 Float1 9.3e-05 Float2 9.000000000000001e-05 Float3 8.8999999
2022.10.27 14:45:28.608 2021.01.12 18:00:00 Big Trend V140 GBPJPYi,H1: Float Gain Meter Buf2AchatLt Float0 5.9e-05 Float1 5.2e-05 Float2 4.6e-05 Float3 4.1e-05
Can you correct that
Thank you
Hello, thanks for question, but I'm not sure if I understand question correctly.
So, you are using this indicator, and also some other expert advisor "Big Trend V140", correct?
And this EA( Big Trend V140 ) cant read the indicators buffers? Am I correct?
Thanks
Ekaterina
Hello, thanks for question, but I'm not sure if I understand question correctly.
So, you are using this indicator, and also some other expert advisor "Big Trend V140", correct?
And this EA( Big Trend V140 ) cant read the indicators buffers? Am I correct?
Thanks
Ekaterina
Yes I use the indicator inside an expert.
Yes I use the indicator inside an expert.
I understand now the situation. So, to "connect"/use MT4 indicator into MT4 EA we need these things :
- indicator buffers
- know indicator "empty value"
- use iCustom function
This indicator has 4 buffers(buffer0,buffer1,buffer2,buffer3) as you can see in Data Window;
Indicator's indexes empty value = 0;
The iCustom function is the most "human" function, because you manually need to re-write indicator's
inputs / parametres and define buy/sell signal conditions.
I have doubts that EA uses indicator's settings/parametres and EA defined correctly enter points.
I have seen several similar EA's that can uses different indicators, but all these EA's are not so perfect,
you always need correct manually, indicator's inputs and trading buffer conditions.
Something similar to this : If indicator's buffer 0 was "empty value" on previous bar, and on current bar buffer 0 != "empty value"
... then open a buy trade (just example);
So, finally, this indicator has buffers(please look picture) and it's empty value = 0; It means that from inicator's side
is done everything to have possibility interact with MT4 Robot.
Please look the part of code in your Expert where iCustom is placed. May be there is something wrong, also check if your
EA uses correct indicator's name, all needable inputs are written in iCustom, and how trading(buy/sell) conditions are formed/defined in your EA.
Hope it was helpfull.
Thanks
Ekaterina
I understand now the situation. So, to "connect"/use MT4 indicator into MT4 EA we need these things :
- indicator buffers
- know indicator "empty value"
- use iCustom function
This indicator has 4 buffers(buffer0,buffer1,buffer2,buffer3) as you can see in Data Window;
Indicator's indexes empty value = 0;
The iCustom function is the most "human" function, because you manually need to re-write indicator's
inputs / parametres and define buy/sell signal conditions.
I have doubts that EA uses indicator's settings/parametres and EA defined correctly enter points.
I have seen several similar EA's that can uses different indicators, but all these EA's are not so perfect,
you always need correct manually, indicator's inputs and trading buffer conditions.
Something similar to this : If indicator's buffer 0 was "empty value" on previous bar, and on current bar buffer 0 != "empty value"
... then open a buy trade (just example);
So, finally, this indicator has buffers(please look picture) and it's empty value = 0; It means that from inicator's side
is done everything to have possibility interact with MT4 Robot.
Please look the part of code in your Expert where iCustom is placed. May be there is something wrong, also check if your
EA uses correct indicator's name, all needable inputs are written in iCustom, and how trading(buy/sell) conditions are formed/defined in your EA.
Hope it was helpfull.
Thanks
Ekaterina
I found a solution , I use the type float instead of double
Can you change in the data window the number of decimal for 6.
Thank you.