Você está na página 1de 1

begin

/////////Compra///////////
Se (Fechamento > Fechamento[1]) e (lowest(Low,2) < lowest(Low,2)[1]) e
(SlowStochastic(8) < 20) then
inicio
// Paintbar(clgreen);
BuyAtMarket;
Fim;
Se (SlowStochastic(8) > 80) then
SellToCoverAtMarket;
///////Venda/////////////
Se (fechamento < fechamento[1]) e (highest(high,2) > highest(high,2)[1]) e
(Slowstochastic(8) > 80) then
inicio
//Paintbar(clred);
SellShortAtMarket;
fim;
Se (SlowStochastic(8) < 20) then
// Paintbar(clamarelo);
BuyToCoverAtMarket;
end;

Você também pode gostar