Volume Spread Analysis Strategies for PI?

Friends, anyone has implemented the Volume Spread analysis strategies on PI?

tradeguider has a software for that, but can it be coded on PI also?

1 Like

post the condition or logic of the strategy, can be coded in tradescript or AFL.

hi.i have amibroker afl of volume spread analysis.can you convert or write that for zerodha pi?

VSA -> Volume*(How is the Closing relative to the Range(H-L) of the bar)
Closing relative to the Range-> (C-L)-(H-C)
Range-> H-L

VSA=CUM(Volume*(((C-L)-(H-C))/(H-L))

I believe it is almost similar to Accumulation/Distribution Indicator.

1 Like