PureBytes Links
Trading Reference Links
|
<x-html><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=windows-1252" http-equiv=Content-Type>
<META content="MSHTML 5.00.2014.210" name=GENERATOR></HEAD>
<BODY bgColor=#ffffff>
<DIV>Is anyone trading whereby the trade must prove itself immediately or you're
out? I've tried super tight stops and,yes, I kept getting stopped out
immediately. I've tried generous support as stops and it blew right
through. I want to take into account some market noise, but if I think I
just bought into a change of trend (after a small retracement) and the trend
doesn't prove itself, how quick should I get out? </DIV>
<DIV> </DIV>
<DIV>As I read price more than indicators, sometimes my gut says bail, but my
stop is sitting on a logical support level. Do I follow my gut and bail
rather than take the hit my methodology is about to deliver me? Comments
please. Thanks!</DIV>
<DIV>Linda</DIV>
<DIV> </DIV>
<DIV>linda@xxxxxxxxxxxxxx<BR>Climb the
mountains & get their glad tidings: Peace will flow into you as sunshine
into flower; the winds will blow their freshness into you & storms their
energy, & cares will drop off you like autumn leaves. John Muir 1838 -
1914</DIV>
<DIV> </DIV>
<DIV> </DIV></BODY></HTML>
</x-html>From ???@??? Sun Apr 11 13:35:48 1999
Received: from list.listserver.com (198.68.191.15)
by mail02.rapidsite.net (RS ver 1.0.2) with SMTP id 5320
for <neal@xxxxxxxxxxxxx>; Sun, 11 Apr 1999 16:35:44 -0400 (EDT)
Received: from localhost (localhost [127.0.0.1])
by accessone.com (8.8.5/8.8.5/PIH) with SMTP id NAA22775;
Sun, 11 Apr 1999 13:35:28 -0700 (PDT)
Received: from pm01sm.pmm.cw.net (pm01sm.pmm.cw.net [208.159.98.150])
by accessone.com (8.8.5/8.8.5/PIH) with ESMTP id NAA22627
for <realtraders@xxxxxxxxxxxxxx>; Sun, 11 Apr 1999 13:33:51 -0700 (PDT)
Received: from [166.62.73.170]
(usr31-dialup42.mix2.Boston.cw.net [166.62.73.170])
by PM01SM.PMM.CW.NET (PMDF V5.2-29 #35315)
with ESMTP id <0FA1001AKL3BJT@xxxxxxxxxxxxxxxxx> for
realtraders@xxxxxxxxxxxxxx; Sun, 11 Apr 1999 20:33:20 +0000 (GMT)
Message-Id: <v04011707b336b030249a@[166.62.73.170]>
Date: Sun, 11 Apr 1999 16:32:59 -0400
Reply-To: bfulks@xxxxxxxxxxxx
Sender: owner-realtraders@xxxxxxxxxxxxxx
From: Bob Fulks <bfulks@xxxxxxxxxxxx>
To: RealTraders Discussion Group <realtraders@xxxxxxxxxxxxxx>
Subject: Re: Gen: question about stops
In-Reply-To: <005b01be8450$b1b609e0$0da4c0d8@xxxxxxxxxxxx>
MIME-version: 1.0
Content-type: text/plain; charset="us-ascii"
X-To: Linda Swope <linda@xxxxxxxxxxxxxx>
X-Cc: RealTraders Discussion Group <realtraders@xxxxxxxxxxxxxx>
X-Sender: bfulks@xxxxxxxxxxxx
X-Listprocessor-Version: 8.1 -- ListProcessor(tm) by CREN
X-Loop-Detect: 1
X-UIDL: 22b572966d2778a4ab2a41ce78e97f09.07
At 3:22 PM -0400 4/11/99, Linda Swope wrote:
>Is anyone trading whereby the trade must prove itself immediately or
>you're out? I've tried super tight stops and,yes, I kept getting stopped
>out immediately. I've tried generous support as stops and it blew right
>through. I want to take into account some market noise, but if I think I
>just bought into a change of trend (after a small retracement) and the
>trend doesn't prove itself, how quick should I get out?
>
>As I read price more than indicators, sometimes my gut says bail, but my
>stop is sitting on a logical support level. Do I follow my gut and bail
>rather than take the hit my methodology is about to deliver me? Comments
>please. Thanks!
>Linda
>
You can wait until the price is moving in your direction to enter. The
following code keeps a buy order active for a specified number of bars,
moves the buy stop point down with each bar if the price moves down, then
enters when the price starts back up. There are many variations of this
idea.
Bob Fulks
----
if <buycondition> then begin
BuyOK = TRUE;
SelOK = FALSE;
Count = 0;
end;
if <selcondition> then begin
BuyOK = FALSE;
SelOK = TRUE;
Count = 0;
end;
BuyPt = High + 1 point;
SelPt = Low - 1 point;
if BuyOK then Buy next bar at BuyPt stop;
if SelOK then Sel next bar at SelPt stop;
if Count < MaxCount then
Count = Count + 1
else begin
BuyOK = FALSE;
SelOK = FALSE;
end;
|