What's new in MetaTrader 4 and MQL4 - big changes on the way - page 18

 
Mischek2:
Does it hurt ?

:)))

I meant "convince".

but the disclaimer is not meaningless :)

 
PapaYozh:

:)))

I meant "convince".

but the qualification does not make no sense :)

If you fuck them up a little bit at first, it's easier to convince them later
 
Mischek2:
If you fuck them over a little at first, it will be easier to persuade them later


To the Annals!!! +100500
 
Renat:

We are currently doing a huge amount of work to upgrade the MetaTrader 4 client terminal.

Here are the changes coming:...

While we're at it ...

I would very much like to have in MT4 an option to line up windows like in MT5, if vertically - then vertically, if horizontally - then horizontally.
I have also lost the possibility to make screenshots of the terminal in the 509 build. May it be saved somewhere? I couldn't find it... (((

 
And it would be nice to finally get rid of the childhood diseases like shutdown by timeout along with the accompanying crutches like IsStopped ( ) :)))
 

There is one more suggestion:

Make an analog of ICustom, so that instead of the parameters of an indicator you can enter the name and the buffer number of one of the already running indices. Accordingly receive data from already running ones. It will simplify a number of tasks.

 
Al_Key:

There is one more suggestion:

Make an analog of ICustom, so that instead of the parameters of an indicator you can enter the name and the buffer number of one of the already running indices. Accordingly receive data from already running ones. It will simplify a number of tasks.


This can be done even now.
 
avtomat:

it can still be done now.

Share your experiences, please.
 
Scriptong:

Share your experience, please.
You can get everything in the data window.
 
Scriptong:

Share your experience, please.


Zhunko; You can get everything in the data window.

It's not hard to build a function.

.

here's a simple substitution

//--- input parameters
extern string    indikatorX="xxx";
extern int       BufferA=0;
extern int       BufferB=1;
extern int       BufferC=2;
.
.
.
.
.

        A[j]=iCustom(NULL,0,indikatorX,BufferA,j);
        B[j]=iCustom(NULL,0,indikatorX,BufferB,j);
        C[j]=iCustom(NULL,0,indikatorX,BufferC,j);