PureBytes Links
Trading Reference Links
|
Hello..I appreciate your code however i back tested the code
against the sp500 and did a dozen or so searchs and got no hits..what are
you running your search against..and can you give me a hit based on
current data so i can retest...thanks.....one more ...do you use the 5 as
well or just the 10.....
At 02:22 PM 1/27/01 -0600, you wrote:
I saw that
some were interested in the Bressert cycle indicators for use in
Metastock. Here is my impelmentation of the cycle 10 indicator; I
have been using it for more than one year as part of explorations.
If you want the cycle 5, just substitute 5 for the 10 in the
formulas.
Good luck I find these cycle
indicators helpful.
The below should be installed as a
custom indicator. It can then be used on charts and called for in
explorations.
{double smoothed stochastic 10
period}
{demominators defined to eliminate divide by zero
errors}
denom1:= If(HHV(H,10)-LLV(L,10)>0,
HHV(H,10)-LLV(L,10), 1);
P1:= Mov(((C-LLV(L,10))/
denom1)*100,3,E);
denom2 := If(HHV(P1,10)-LLV(P1,10)>0,
HHV(P1,10)-LLV(P1,10), 1);
Mov(((P1-LLV(P1,10))/denom2)*100,3,E)
Opinions and Feedback Appreciated....
Jim
Atlanta,
GA
|