VAR
Compra, venda, compra2, venda2 : booleano;
Inicio
compra:= (fechamento[2]<abertura [2]) e (fechamento[1]>abertura [1]) e
(fechamento>abertura);
venda:= (fechamento[2]>abertura [2]) e (fechamento[1]<abertura [1]) e
(fechamento<abertura);
se (compra) entao
paintbar (clblue);
se (venda) entao
paintbar (255);
fim;