laurel38 мэтр
Зарегистрирован: 28.04.2010 Сообщения: 223
|
Добавлено: Чт Июл 05, 2012 8:09 pm Заголовок сообщения: Индикатор + Сигнал на продажу |
цитата |
|
Торговая система для маленьких тайм-фреймов для пар с четыремя знаками после точки.
[img:7c263eccde]http://taik-profit.ucoz.ru/_ph/1/552533729.jpg[/img:7c263eccde]
Индикатор:
[code:1:7c263eccde]Inputs: Price((C + O) / 2), Length(3);
Plot1(Round(WAverage(Price, Length),2), "L1");
SetPlotColor(1,Red);
SetPlotWidth(1,1);
Plot2(Round(WAverage(Price, Length),2)+0.0050, "L2");
SetPlotColor(2,Red);
SetPlotWidth(2,1);
Plot3(Round(WAverage(Price, Length),2)-0.0050, "L3");
SetPlotColor(3,Red);
SetPlotWidth(3,1);
Plot4(WAverage(Price, Length), "L4");
SetPlotColor(4,Magenta);
SetPlotWidth(4,2);[/code:1:7c263eccde]
Сигнал на продажу:
[code:1:7c263eccde]Inputs: Price((C + O) / 2), Length(3);
Variables: L1(0), L2(0), L3(0), L4(0);
L1 = Round(L4,2);
L2 = Round(L4,2)+0.0050;
L3 = Round(L4,2)-0.0050;
L4 = WAverage(Price, Length);
If L4<L4[1] and Price > L1 and l < l1 Then
Sell ("Продано") this bar at close;
If L1<L1[1] Then
Sell ("Продано") this bar at close;
If L1>L1[1] Then
ExitShort this bar at close;[/code:1:7c263eccde] |
|