Range:
High-Low
MFI:
Fml("Range") / Volume
Efficiency:
If(Fml("MFI"),>,Ref(Fml("MFI"),-1),1,
If(Fml("MFI"),<,Ref(Fml("MFI"),-1),-1,
If(Fml("MFI"),=,Ref(Fml("MFI"),-1),0,0)))
Where:
+1 = increase
-1 = decrease
0 = unchanged
Market
Facilitation Comparison:
If(V,>,Ref(V,-1),If(Fml("MFI"),>,Ref(Fml("MFI"),-1)
,1,If(Fml("MFI"),<,Ref(Fml("MFI"),-1),2,0)),If(V,<
,Ref(V,-1),If(Fml("MFI"),>,Ref(Fml("MFI"),-1),3,If(
Fml("MFI"),<,Ref(Fml("MFI"),-1),4,0)),0))
Where:
1 = +,+
2 = +,-
3 = -,+
4 = -,-
|