[Archive] Learn how to make money villagers! - page 414

 
7Konstantin7:

:)

<a href="/en/44751/


Daaaa.... Cool... Vintage looks like they've got chips on their hips left/right back.... In a different song and move... :-)
 
lizzavet:

What a beauty! I want lots of money!!!!

:-) ... :-)
 

Villagers, I think you have relaxed. Still just take your EAs and test for 99% quality, as it is written here http://tradelikeapro.ru/2011/03/12/kak-poluchit-kachestvo-modelirovaniya-99/

Only the terminal version needs 402 or lower, otherwise the scripts won't work.
 
Neelan:

Villagers, I think you have relaxed. You just take your EAs and test them at 99% quality as it is written here https://www.mql5.com/go?link=http://tradelikeapro.ru/kak-poluchit-kachestvo-modelirovaniya-99//

You may use 402 or lower, otherwise the scripts will not work.


I like this phrase at the end:

P.S. I want to point out that even at 99% backtest may not produce the result that was in reality, so rely entirely on the strategy tester should not. nothing can replace the test in real time on a real account.

 

Spreads of course, I'm pissed off: EUR/USD (2) is now 8, 4 times over, GBP/USD (3) is now 9, 3 times over.

There were 3 trades yesterday, not much to be gained. DCs may be worried about health before the

(probably before the holiday :)))

 
Happy New Year, Countrymen™!
 
Neelan:

Villagers, I think you have relaxed. Still just take your EAs and test for 99% quality as it is written here http://tradelikeapro.ru/2011/03/12/kak-poluchit-kachestvo-modelirovaniya-99/

Only the terminal version should be 402 or lower, otherwise the scripts will not work.

It's for pipers. Ilans can be tested on minutes as well.

Happy New Year, yes! ))

 

Who can explain - why doesn't the automatic pending order close? It closes by hand...

 
new-rena:

Who can explain - why doesn't the automatic pending order close? It closes by hand...



"Wrong ticket number", the code needs to be looked at.
 
TEXX:

"Wrong ticket number", the code has to be looked at.

            for ( i=OrdersTotal()-1; i>=0; i--)       //Цикл по всем ордерам,..     
               {                  
                  if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==true)
                     {
                        if( OrderType() == OP_SELLLIMIT )
                           {                              
                              ticket=OrderClose(OrderTicket(),OrderLots(),MarketInfo(OrderSymbol(),MODE_ASK),3,Red);
                              if(ticket<0){Print("OrderClose failed with error #",GetLastError());}
                              Print(OrderTicket()); 
                           }
                        if( OrderType() == OP_BUYLIMIT )
                           {
                              ticket=OrderClose(OrderTicket(),OrderLots(),MarketInfo(OrderSymbol(),MODE_BID),3,Red);
                              if(ticket<0){Print("OrderClose failed with error #",GetLastError());}
                              Print(OrderTicket()); 
                           }                           
                     }                                                                                                                                                                     
               }