please guide
If i want to sell my buy position on base of volume.
Volume in current candle is less than 50% of previous candle then afl formula for this please
regards
If i want to sell my buy position on base of volume.
Volume in current candle is less than 50% of previous candle then afl formula for this please
regards
bad in logics, maths and creation of codes..
so don't curse me, if my answer is wrong..
Code:
V1 = V;
V2 = Ref(V,-1);
V3 = (V2/V1);
Sell = IIf(V3>=2,1,Null);