Can we include Gann Hi Lo indicator in zerodha studies?

I found below Gann Hi Low indicator code;

{name: GANN-HiLo}

HLd:=If(CLOSE>Ref(Mov(H,3,S),-1),
{then}1,
{else}If(CLOSE<Ref(Mov(L,3,S),-1),
{then}-1,
{else}0));
HLv:=ValueWhen(1,HLd<>0,HLd);
HiLo:=If(HLv=-1,
{then}Mov(H,3,S),
{else}Mov(L,3,S));
HiLo;

can we include this in Zerodha studies?

1 Like

Can any one convert this Gann Hi Lo code for Pi? Zerodha guys can you help me in this?

Yes, We need the Gann HiLo Indicator as an Overlay indicator in Chart Studies.

1 Like

Yes i also need this indicator

1 Like