Registered User Joined: 1/15/2005 Posts: 60
|
I am using the following stochstic 12,3,3 and PCF for cross over.
(STOC12.3 < 30) AND (STOC12.3 > AVG(STOC12.3,3)) AND (STOC12.3.1 < AVG(STOC12.3.1,3))
Is this correct?
I like to know, if the corss over happened WITHIN the last 5 days? How can I do it?
|
Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
Looks good... Your PCF also limits the list to Stochastics today being less than 30. Did you want that?
This should find crossovers happening in the last 5 days under 30:
(STOC12.3 < 30) AND (STOC12.3 > AVG(STOC12.3,3)) AND (STOC12.3.5 < AVG(STOC12.3.5,3))
- Craig Here to Help!
|