PureBytes Links
Trading Reference Links
|
Thank you, Roy
I will try them.
--- In equismetastock@xxxxxxxxxxxxxxx, "Roy Larsen" <rlarsen@xxxx>
wrote:
> kiyofumi
>
> There are a number of ways to achieve this. Probably the easiest
with any version of the System
> Tester is to use the Inactivity Stop. Set the minimum activity to
999%.
>
> Another method is to delay the leading edge of the entry signal by
ten bars and use that for exit.
> This method is not as accurate because of the distinct possibility
of entry signals occurring at
> less than ten bar intervals.
>
> Another method is to code a PREV based latch to generate the exit
after an appropriate delay. This
> code is slower to execute if used in the System Tester, but it has
the advantage that, as an
> indicator, it can be used to show the trade status directly on a
chart without the need to run the
> System Tester.
>
> {Timed Exit Signal}
> D:=Input("Delay Periods",1,99,10); {remove Input() for use in
System Tester }
> N:=Cross(Mov(C,15,E),Mov(C,25,E));{entry signal}
> R:=If(PREV<=0,N,If(BarsSince(PREV<=0)=D,-1,1));
> X:=R=-1;
> X;.
>
> Roy
>
>
>
> ----- Original Message -----
> From: "kiyofumi2002" <gold_trader_in_nymex@xxxx>
> To: <equismetastock@xxxxxxxxxxxxxxx>
> Sent: Tuesday, September 07, 2004 3:59 AM
> Subject: [EquisMetaStock Group] Exit after 10days
>
>
> > Hello everyone.
> >
> > I would like to ask a question.
> >
> > I want to close the position after entering 10 days.
> >
> > For example,
> >
> > If I bought a stock 10 unit today september 7th,
> > I want to sell them Sep. 17th.
> >
> >
> > What fuction should I use?
> >
> > Thank you.
> >
> >
> >
> >
> >
> >
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|