Cool system! - page 26

 

I agree 100%.

In this regard, an idea came to my mind.

To put the robot on the server + on different DCs.

Who are interested in what brokerage houses Write, I will make a list.

I think not more than ten

 
Fozi try fxstart.ru pair EurJpy
 
WitoHOH писал(а) >>

The operation does vary from broker to broker, ...

It's all about coding filtering and time difference.

Filtering on H4 is practically unnoticeable, but server time shift on H4 has a VERY strong effect.

If in one brokerage company with GMT+0 server time the current H4 bar has just opened, then in another one with GMT+2 server time this bar has already opened.

GMT+2 server time this bar is 2 hours old and may be several figures high.

 
fozi писал(а) >>

Who is interested in which DCs Write, I will make a list.

I think no more than a dozen.

The first thing to pay attention to these TCs were different server time,

It is desirable to have a difference of 1, 2 and 3 hours. The rest is much less important.

 
artsnz писал(а) >>
This EA has to be tested on a demo, you can't test it in a tester because it takes data from other timeframes.

A more than strange statement ...

How and why do the developers offer a whole group of functions for timeframe access?

The timeframe parameter of these functions sets the "alien" TF, and in addition allows you to access another tool.

Or what else do you mean?

artsnz wrote >>
... But tester as you know can not simultaneously generate both, so it's only a test for a demo)
Simultaneous and unnecessary, the programme is executed operator by operator ... sequentially.
 
Shniperson >> :
Fozi try fxstart.ru pair EurJpy

I support fxstart.ru, but the pair could be more popular. Like EURUSD

 
EuroBucks is less volatile... where the EuroBucks passes 100p on the EuroYen will be 200... The only "BUT" is that it is a cross and very much dependent on the BucksYen and EuroBucks. So it is not clear how patterns will work on it...
 

CAMRADY PREVIEW

Put the robot to the test.

For several reasons I have only installed it on 1 day.


Pull here

Login : 528514

Investor : 3nnrnxk


Download the terminal from here.

http://www.forextrade.ru/trader/metatrader/


H4 TIMEFRAME

GBP|USD

 

Things were moving fast (c) I'd given up looking at this topic for 4 days... and it's all gone) Comrades, there was a 5th version of profiter slipping through who downloaded it, lend it to me... I'll put it on Alpari. I'll post the score.

 

Hello, everyone!

.

Here's the stats from the demo.

BROKERAGE COMPANY http://www.forex4you.org/

Login : 183299073
Investor : 1nsoktp (read only password)

.

It is tested on all instruments containing EUR, USD and GBP plus GOLD and SILVER.

There are 28 instruments in total.

.

I will solve the problem with non-renewal of the template by reloading the terminal in the morning and evening.

.

One more thing: I've replaced the trawl function with my own:

void Trailing. Stop()
{  if (OrdersTotal()<=0) return(0);
  for (int cnt = OrdersTotal()-1 ; cnt >= 0; cnt--) 
  { 
    OrderSelect( cnt, SELECT_BY_POS, MODE_TRADES); 
    if (OrderSymbol() == Symbol()) 
     { 
      if(OrderType()==OP_BUY) 
         {
            if (Bid-OrderOpenPrice()>( TrailingStep)*Point)
             { 
              if(OrderStopLoss()<Bid-Point*( TrailingStep) || OrderStopLoss()==0)
               {
                OrderModify(OrderTicket(),OrderOpenPrice(),(Bid-(Point* TrailingStep)),OrderTakeProfit(),0,0);
               }
             }
           }
       if(OrderType()==OP_SELL) 
         {
            if (OrderOpenPrice()-Ask>( TrailingStep)*Point)
             {
              if(OrderStopLoss()>Ask+Point*( TrailingStep) || OrderStopLoss()==0)
               { 
                OrderModify(OrderTicket(),OrderOpenPrice(),(Ask+(Point* TrailingStep)),OrderTakeProfit(),0,0);
               }
             }
            }
           }
          }
         }

.

The trawl that is built into the Expert Advisor does not work quite correctly in my opinion.

Namely: It starts to move stop before the profit reaches TrailingStep.

But of course this is only for beginners.

Files:
state.zip  8 kb