Craig or any one:
I have a problem.
I'm trying to use Martin Pring's KST indicator to find crosses of it and it's MA with the exploration feature and Fidelity Select funds.
KST is defined as:
(ROC( Mov(C,50,E),50,%) + (ROC( Mov(C,65,E),65,%) * 2) +(ROC( Mov(C,75,E),75,%) * 3) + (ROC( Mov(C,100,E),100,%) * 4))/10
The exploration is written as follows.
colA C{close}
colB (ROC( Mov(C,50,E),50,%) + (ROC( Mov(C,65,E),65,%) * 2) +(ROC( Mov(C,75,E),75,%) * 3) + (ROC( Mov(C,100,E),100,%) * 4))/10
colC Mov((ROC( Mov(C,50,E),50,%) + (ROC( Mov(C,65,E),65,%) * 2) +(ROC( Mov(C,75,E),75,%) * 3) + (ROC( Mov(C,100,E),100,%) * 4))/10, 5,S)
colD Ref((ROC( Mov(C,50,E),50,%) + (ROC( Mov(C,65,E),65,%) * 2) +(ROC( Mov(C,75,E),75,%) * 3) + (ROC( Mov(C,100,E),100,%) * 4))/10 ,-1)
colE Ref( Mov((ROC( Mov(C,50,E),50,%) + (ROC( Mov(C,65,E),65,%) * 2) +(ROC( Mov(C,75,E),75,%) * 3) + (ROC( Mov(C,100,E),100,%) * 4))/10, 5,S),-1)
Filter (colD < colE AND colB > colC) OR (colD > colE AND colB < colC)
My problem is that the values that I get through the exploration report do not agree with the values of the same indicators when plotted on the chart in question. I might add that colA (close values) do agree.
I'm sorry for the length of the message. Any one see where I' m going wrong?
Thanks in advance,
John |