SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : Befriend the Trend Trading
SPY 679.96-1.1%Oct 30 4:00 PM EDT

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
To: darvasdarvas who wrote (16314)2/25/2001 10:31:24 PM
From: MechanicalMethod  Read Replies (1) of 39683
 
DarvasDarvas,

I like your system particularly because the rules are clear.

if marketPosition > 0 then begin
...if L < entryPrice * .95 then exitLong at market;
...if barsSinceEntry = 3 then exitLong at open;
end;

It's a bit more tedious than that because there's exceptions {bugs} and that's just the exit but it's the exit that interests me.

Here's what I've heard:

var: trendUp(false), top(0), bottom(0), pyramid(false), shadow(0);

if h > highest(h,250) then trendUp=true;

if trendUp=true then begin
...if marketPosition=0 then buy next bar at open;
...if h > highest(h,3) then pyramid=true else pyramid=false;
...if h > highest(h,3) then top = h;
...if h < highest(h,3) and L < lowest(L,3) then bottom=L; {bug}
...shadow = .95 * bottom;
...if L < shadow then trendUp=false; {?}
end;

if marketPosition > 0 then begin
...if trendUp=true and pyramid=true then buy next bar at open;
...if L < shadow then exitLong stop at shadow;
...if trendUp=false then exitLong at market:
end;
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext