logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
FXLearning  
#1 Posted : Friday, December 15, 2006 11:47:43 AM(UTC)
FXLearning

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 1/1/2006(UTC)
Posts: 39

I have been playing lately with a new indicator based on an article "Confirming High-Probability Turning Points" from the October 2006, TASC magazine.

The problem I have is that during strong bull markets the indicator produces too many signals, and I have not thought of a good filter for this problem.

I suspect that the problem lies in my implementation to analyze the volume component. I was wondering if somebody else has some better ideas for the volume portion (or other portions of the code).

Sell Volume Indicator

closebelowhalfrange:= C <= (H+L)/2;
gapping:=GapUp() OR Ref(GapUp(),-1);
gapandbelow:=gapping AND closebelowhalfrange;

pricevolup:=(V>Ref(V,-1) AND V>Ref(V,-2)) AND (RallyWithVol() OR Ref(RallyWithVol(),-1));
priceup:=L>Ref(L,-20) AND L>Ref(L,-1) AND L>Ref(L,-2);
priceandvolume:=gapandbelow AND pricevolup AND priceup;
priceandvolume;

Regards,

FXLearning

Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.