Körde några systemtester i metastock och tyckte den här verkar intressant, men hur översätter man till AT
Signalerna triggas av när kurvan skär ett medelvärde.
The Negative Volume Index (NVI) relates a decrease in volume to the change in the security's price. When volume decreases from the previous day, the NVI is adjusted by the percentage change in the security's price.
If (V < (ref(V,-1)) then
NVI = I + (((C - ref(C,-1) / ref(C,-1)))
If (V >= ref(V,-1)) then
NVI = I
Where:
C = Today's closing price
ref(C,-1) = Yesterday's closing price
I = Yesterday's Negative Volume Index
NVI = Today's Negative Volume Index
V = Today's volume
ref(V,-1) = Yesterday's volume
Signalerna triggas av när kurvan skär ett medelvärde.
The Negative Volume Index (NVI) relates a decrease in volume to the change in the security's price. When volume decreases from the previous day, the NVI is adjusted by the percentage change in the security's price.
If (V < (ref(V,-1)) then
NVI = I + (((C - ref(C,-1) / ref(C,-1)))
If (V >= ref(V,-1)) then
NVI = I
Where:
C = Today's closing price
ref(C,-1) = Yesterday's closing price
I = Yesterday's Negative Volume Index
NVI = Today's Negative Volume Index
V = Today's volume
ref(V,-1) = Yesterday's volume
Comment