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

 
TEXX:


input parameters

extern bool NewTrade = true; // New trade (enabled/disabled)
extern bool AddUse = true; // Breakeven (enabled/disabled)
extern double OpenLot = 0.1; // Initial trade lot
extern int DigitsLot = 2; // Size of lot
extern int MMType = 0; // MM Type 0-averaging orders, 1-averaging with last multiplication by EXP.
extern double EXP = 1.3; // multiplication factor for averaging
extern int TakeProfit = 30; // TakeProfit.
extern int OrderStep = 6; // Minimum step for opening the next order
extern int Slip = 3; // Price slippage
extern int MaxTrades = 20; // Maximum number of open orders in one direction
extern int int MagicNumber = 888; // Order Magic

the conditions for opening trades borrowed from Ilan

double PrevCl = iClose(Symbol(),0,2);
double CurrCl = iClose(Symbol(),0,1);

if (PrevCl < CurrCl) -> Buy
if (PrevCl > CurrCl) -> Sell


Thanks for understanding some of the misunderstandings!
 
vladds:

Thanks for understanding some of the misunderstandings!

it's a different owl from the one you posted on page 1 of this thread or the one Alexey made on page 80... ???
 
Roman.:

that's a different owl from the one you posted on page 1 of this thread or the one Alexey made on page 80... ???

4 file is the same! stop no!
 
Certainly an original approach, but in my opinion this advisor gives an annual profit less than the Russian bank profit. With a proper non-draining MM.
 
Roman.:

that's a different owl from the one you posted on page 1 of this thread or the one Alexey made on page 80... ???

how is it different from aleksey's!?
 
Zhunko:
Certainly an original approach, but in my opinion this advisor gives an annual profit less than the Russian bank profit. With a proper non-draining MM.

in 3 days it gives 200% of the bank!
 
vladds:

4 file is the same!


...??? I downloaded it - I'm comparing it to this

extern bool NewTrade = true; // Новая торговля (разрешена/запрещена)
 extern bool AddUse = true; // Вывод в безубыток (разрешен/запрещен)
 extern double OpenLot = 0.1; // Начальный лот торговли
 extern int DigitsLot = 2; // Размерность лота
 extern int MMType = 0; // Тип ММ 0-усреднение ордеров, 1-усреднение с послед. умножением на ЕХР
 extern double EXP = 1.3; // Коэф. умножения при усреднении
 extern int TakeProfit = 30; // Тейкпрофит 
 extern int OrderStep = 6; // Минимальный шаг открытия следующего ордера
 extern int Slip = 3; // Проскальзывание цены
 extern int MaxTrades = 20; // Максимальное количество открытых ордеров по одному направлению
 extern int MagicNumber = 888; // Магик ордеров

условия открытия сделок позаимствовано у Илана

double PrevCl = iClose(Symbol(),0,2); 
 double CurrCl = iClose(Symbol(),0,1); 

 if (PrevCl < CurrCl) -> Buy 
 if (PrevCl > CurrCl) -> Sell

- there is no input parameter

extern bool NewTrade = true; // Новая торговля (разрешена/запрещена)
...
haven't compared further - this owl - from the first page - matches the owl on page 80... I checked.
 
vladds:

and how is it different from alekseyevsky!?

I'm comparing.
 
vladds:

4 file is the same! no stop!

Where does it all lie? Where can I download it? From which page?
 
Roman.:


...??? I downloaded it - I'm comparing it to this

- it doesn't have an input parameter

haven't compared further - this owl - from the first page - is exactly the same as the owl on page #80... I checked.

so if there will be a modification then drop me an owl I will update!