top of page

CÓDIGO DA REGRA DE COLORAÇÃO DOS GRANDES PLAYERS

É só copiar, colar e salvar esse código no Editor de Estratégias do seu ProfitChart que ele poderá ser usado como regra de coloração.

var
  pGrandePlayers,mm : float;
begin
  mm := media(20,close);
  if (volume > highest(volume,20)[1]) and (volume > media(20,volume)) then
    begin
      pGrandePlayers := (high + low) / 2;
    end;
  if (close > media(20,close)) then
    PaintBar(clverde)
  else if (close < media(20,close)) then
    PaintBar(clmarrom);
  if (close < media(20,close)) and (close > pGrandePlayers) and (media(20,close) < media(20,close)[1]) then
    PaintBar(RGB(200,100,50))
  else if (close > media(20,close)) and (close < pGrandePlayers) and (media(20,close) > media(20,close)[1]) then
    PaintBar(cllime);
  plot(pGrandePlayers);
  plot2(media(20,close));
end;

bottom of page