Regra Tcoloracao Confs
Regra Tcoloracao Confs
Regra Tcoloracao Confs
Inicio
Se (Media(20,Close) > Media(20,Close)[1]) ent�o
PaintBar(clVerde)
Sen�o Se (Media(20,Close) < Media(20,Close)[1]) ent�o
PaintBar(clVermelho);
Fim
#########################
input
periodo(20);
Dados(Close);
var
nIndex : Integer;
sSum : Float;
begin
if(CurrentBar = periodo-1) then
begin
sSum := 0;
For nIndex := 0 to periodo-1 do
sSum := sSum + Dados[nIndex];
if (LastCalcTime > 1040-15) then
Plot(sSum/Periodo);
end
else if(CurrentBar > Periodo-1) then
begin
sSum := sSum[1] + Dados - Dados[periodo];
if (LastCalcTime > 1040-15) then
Plot(sSum/Periodo);
end;
end;
####################
######################
input
periodo(1);
begin
if (LastCalcTime < 1040-5) then
Plot(VWAP(periodo));
end
end;
####################
#####################
Inicio
Fim;