Quote from mysticman:
Would it be possible for those of us with Excel to do this test? I believe the VR is also called an F-test. Would you suggest a stock so that we could post the results and compare with yours?
Use something like this in the vba editor...
Sub VR_Profile()
Dim a(1000) 'close data
Dim v(30) 'vr profile data
For i = 1 To 1000
a(i) = Cells(i + 1, 1)
Next i
For j = 1 To 30
ct = 0
For i = j To 999 Step j
v(j) = v(j) + (Log(a(i + 1) / a(i + 1 - j))) ^ 2
ct = ct + 1
Next i
v(j) = v(j) / ct
Next j
For j = 1 To 30
Cells(j + 1, 6) = v(j) / j
Next j
End Sub
A quick example follows. Looks ok by I haven't test it extensively. The only thing missing is a smoothing line for the scatter data.
Regards
ET is definately comical most of the time.. maybe the geeky words in the thread title scared off the trolls.