Experts: VR---SETKA=2=01032012

 

VR---SETKA=2=01032012:

Modification of the first version of the grid EA.

Author: Владимир

 

Hello Voldemar,

please can you explain the settings:

Correlyciya= 50;
TakeProfit = 300;
(Lot = 0.1;)
Procent =1.3;

Thanks

 
Meta1:

Hello Voldemar,

please can you explain the settings:

Correlyciya= 50;
TakeProfit = 300;
(Lot = 0.1;)
Procent =1.3;

Thanks

extern int Correlyciya = 50, / / no loss in case of unsuccessful log Correlyciya pluspoints in profit

extern int TakeProfit = 300 / / Take Profit

extern double Lot = 0.1; / / Lot

extern double Procent = 1.3 ;/ / rate at which the purchase / sale

extern bool Martin = true; / / If true then Martin is calculated on the basis of a geometric progression 0.1 0.2 0.4 0.8 0.12

/ / If Fals is calculated on the basis of Martin 0.1 0.1 0.1 0.2 0.2 0.2 0.3 0.3 0.3 0.40.4 0.4

How it works councilor! If the price of today grew by 1.3% then the adviser would sell and take a rollback if the price dropped the EA buys

if the price went against us, the adviser will be averaged until the close of the transaction in the 0 ..

Everyone associated trend .............

 

This is one of the best EAs I've seen. It sort of 'can't fail' - except that it is still possible to wipe out your equity if there is a large run in the wrong direction. I was wondering if the program could look to see if the drawdown left less than say 50% and if it was about to do another sell, for it to also do a buy with the same lots. Of course, you would end up with no gain or win but at least your account would be preserved. Would this work, or have I missed something?


-Jerry

 
On which timeframe you run it.??
 
dineshydv:
On which timeframe you run it.??

15 min, 1h
 

Thanks, Can we make it 5 digit too?

R




Meta1:

Hello Voldemar,

please can you explain the settings:

Correlyciya= 50;
TakeProfit = 300;
(Lot = 0.1;)
Procent =1.3;

Thanks

 
comerro1:

Thanks, Can we make it 5 digit too?

R




Meta1:

Hello Voldemar,

please can you explain the settings:

Correlyciya= 50;
TakeProfit = 300;
(Lot = 0.1;)
Procent =1.3;

Thanks




Yes, and 5 figures the same ....
 
What are the rules of entry and exit?
 
DmitryS:
What are the rules of entry and exit?

Вход бай: Рост цены от минимума к максимуму текущего дня больше чем Procent

Выход бай : по тейк профиту или усреднение в ноль плюс Correlyciya

Log buy: Growth rates from minimum to maximum of the day more than Procent

Output buy: to take profit or averaging to zero, plus Correlyciya

 

whats the purpose of Procent.?? Does it mean if percentage price moves more than Procent then sell if drops more than Procent then buy.?? If its so then for sell condition it should be ( x >= Procent ) instead of ( Procent>=x ).
Does Procent has some other purpose.??

Reason: