Hallo
Ik krijg deze PVI / NVI indicator niet aan de gang.
Misschien dat iemand anders het wel lukt???
http://my.dreamwiz.com/y9567/volume.htm
http://www.beursbrief.be/technische_ana ... _trend.asp
---
Inputs: Length(255), Displace(0);
Variables: PVI(100), InitValue(100);
If PVI <> 0 then
InitValue = 0;
IF volume > volume[1] then
PVI = (PVI[1] + InitValue) + (((close - close[1])/close[1]) * (PVI[1] + InitValue));
IF volume <= volume[1] then
PVI = PVI[1];
Plot1(PVI);
If Displace >= 0 OR CurrentBar > AbsValue(Displace) Then Begin
Plot2[Displace](AverageFC(PVI, Length), "PVI-MA");
end;
--------