Discussion of article "Triangular arbitrage" - page 9

 
Maxim Dmitrievsky:

And what's this for? As an example of creation, if only

It shows that the TS of triangular arbitrage can be written like this.

void OnTick()
{
  if (Bid > 1)
    OrderSend(_Symbol, OP_SELL, 1, Bid, 0, 0, 0);
  else if (Ask < 1)
    OrderSend(_Symbol, OP_BUY, 1, Ask, 0, 0, 0);    
}

I.e. TS at the level of "Hello World!" What used to be difficult and accessible not for everyone, can now be used for beginners.

It is hard to invent a simpler TS.

 

fxsaber, what is the ping of your arbitrage robots?

 
bas:

fxsaber, what is the ping of your arbitrage robots?

I don't have any.

 

Well you must be testing your research in some terminal, what is the ping to the server?

 
bas:

Well, you must be testing your research in some terminal, what is the terminal's ping to the server?

There isn't any.

 

Great Article

but you can explain me the meaning of DEVIATION

THANKS

#define DEVIATION       3  

 
Mario Trinchero:

Great Article

but you can explain me the meaning of DEVIATION

THANKS

#define DEVIATION       3  

slippage
 

hello Alexey

in which chart do you add this EA? as you are managing multiple symbols,the Ontick event will be triggered on each tick of the EA attached symbol.

I can see you use the following code: 

void OnTimer()

    {

      OnTick();

    }  


and you use EventSetTimer(1);

but, don't you think one second will be "too slow" to process other symbols if you do not receive any tick on the  EA attached symbol?

thanks and best regards, 

 
FXreedom :

hello Alexey


It can be considered more often, but I think that one robot should not spend all the time of the processor and interfere with other robots.

For more frequent checks, you can create a table of triangles, and check the closest to the opening, and the rest - check less often.

Or you can use OpenCL.

In the combat version, you have the right to act on your own. The article presents an idea and an example of its implementation. All the improvements are already yours.

 

hellp Alexey Oreshkin,


nice creation, i like it, 

this strategy study last few month, but i can't idea how to work it, if possible please create mt4 version, with some input,


i some need modification, if you like it change it,


1) many time delay open orders ( try to early open orders )

2) input how want profit $ they after close 3 pairs

3) if open other triangular Pair, then change other Magic Number

etc,


best of luck

thanks for sharing


regards,

- jesing ( jesing.sumesara@gmail.com )