- Katılım
- 23 Eki 2020
- Mesajlar
- 1,828
Money Flow - RSI Indicator
Brs:=Input("Length",2,100,4);
PVF:=If(C>Ref(C,-1),1,0);
NVF:=If(C<=Ref(C,-1),1,0);
AP:=(H+L+C)/3;
MF:=V*AP;
PMF:=Sum(MF*PVF,Brs);
NMF:=Sum(MF*NVF,Brs);
MFRSI:=Mov(Mov(100*(PMF/(PMF+NMF)),3,S),3,S);
UB:=Ref(HHV(MFRSI,3*Brs),-1);
LB:=Ref(LLV(MFRSI,3*Brs),-1);
MFRSI;
UB;
LB;
Brs:=Input("Length",2,100,4);
PVF:=If(C>Ref(C,-1),1,0);
NVF:=If(C<=Ref(C,-1),1,0);
AP:=(H+L+C)/3;
MF:=V*AP;
PMF:=Sum(MF*PVF,Brs);
NMF:=Sum(MF*NVF,Brs);
MFRSI:=Mov(Mov(100*(PMF/(PMF+NMF)),3,S),3,S);
UB:=Ref(HHV(MFRSI,3*Brs),-1);
LB:=Ref(LLV(MFRSI,3*Brs),-1);
MFRSI;
UB;
LB;
Source / From: |