the formulas are:
Gann Hilo Activator
HLd:=If(C>Ref(Mov(H,Lb,S),-1),1,If(C<Ref(Mov(L,Lb,S),-1),-1,0));
HLv:=ValueWhen(1,HLd<>0,HLd);
HiLo:=If(HLv=-1,Mov(H,Lb,S),Mov(L,Lb,S));
Volume Price Confirmation Indicator
{Calculate Short Term & Long Term Volume Weighted Moving Averages}
ShortTerm_VWMA:= Sum((Volume*price),stvwmaperiods)/Sum(Volume,stvwmaperiods);
LongTerm_VWMA:= Sum((Volume*price),ltvwmaperiods)/Sum(Volume,ltvwmaperiods);
{Calculate Short Term Simple Moving Average}
ShortTerm_SMA:= Mov(price,stsmaperiods,S);
{Calculate the VPCI Components}
VPC:= ShortTerm_VWMA – ShortTerm_SMA;
VPR:= ShortTerm_VWMA / ShortTerm_SMA;
VM:= ShortTerm_VWMA / LongTerm_VWMA;
{Calculate Volume Price Confirmation Indicator}
{Normalize VPCI values & Calculate Volume-Weighted MA of VPCI}
VPCI:= ((VPC * VPR) * VM) * 10000 / C;
SmoothedVPCI:= Sum((Volume*VPCI),svpciperiods)/Sum(Volume,svpciperiods);
Dont know what to do with this! Its possible to some “magic” transform this in a file to have this indicators in prorealtime list of indicators?
Thanks again and happy new year to all of you!