[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

help with formula



PureBytes Links

Trading Reference Links

could you check the formula, this pattern should start with bar A having
the highest high in 13 perids.

thank you
Anthony

// Micro M tops
pds=13;
MicroM=HHV(Ref(H,-2),pds)AND Ref(C,-2)> Ref(C,-3)AND Ref(C,-2) >Ref(O,-2)AND Ref(L,-1) <Ref(L,-2)AND Ref(C,-1)<Ref(C,-2)AND Ref(C,-1)<Ref(O,-1)AND L > Ref(L,-1)AND C > Ref(C,-1) AND C > O;
Graph0=C;
Graph0Style=128;
barcolor=IIf(microm,4,6);
Graph0BarColor=ValueWhen(barcolor!=0,barcolor);