Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
12
HRS_Trader Salehi  
Hello
Please, if possible, add the minute setting to the time filter in the next version, for example, the robot starts working at 5:35, thank you.
And can i have the mq4 and mq5 files?
Nikolaos Pantzos  
HRS_Trader Salehi #:
Hello
Please, if possible, add the minute setting to the time filter in the next version, for example, the robot starts working at 5:35, thank you.
And can i have the mq4 and mq5 files?

Done!

The necessary changes have been made to the file.

The source code is not publicly available.

HRS_Trader Salehi  
In the signal section, which indicator or strategy use for normal and reverse signals?
HRS_Trader Salehi  
Nikolaos Pantzos #:

Done!

The necessary changes have been made to the file.

The source code is not publicly available.

Thanks a lot.

Nikolaos Pantzos  
HRS_Trader Salehi #:
In the signal section, which indicator or strategy use for normal and reverse signals?

I don't use any indicator. Only price close of each bar. 2 moving average price (fast and slow) as you can see on the part of code.

         for(i=0; i<BarsForSignals_1; i++)
           {
            PriceFast+=iClose(SymbolTrade,0,i);
           }
         //---
         for(i=0; i<BarsForSignals_2; i++)
           {
            PriceSlow+=iClose(SymbolTrade,0,i);
           }
         //---
         PriceFast/=BarsForSignals_1;
         PriceSlow/=BarsForSignals_2;
         DiffPrices=(PriceFast-PriceSlow)/SymbolPoints;
Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
12