PureBytes Links
Trading Reference Links
|
> Buy: cross(C,3) * ( C > 3 )
Since the price has to be above $3 once it crosses that level, the
above multiplier is redundant code.
Buy:=cross(C,3)
> Sell: cross(C, 2.90) + cross(C, 3.20)
Thinking in terms of logical AND/OR operators often makes the signal
process easier to understand:
Sell:=Cross(C,2.9) OR Cross(C,3.2)
jose '-)
http://www.metastocktools.com
--- In equismetastock@xxxxxxxxxxxxxxx, mgf_za_1999 <no_reply@xxxx>
wrote:
>
> Hi,
>
> Presuming you buy when the price goes above 3, something like
>
> Buy: cross(C,3) * ( C > 3 )
>
> Sell: cross(C, 2.90) + cross(C, 3.20)
>
> Regards
> MG Ferreira
> TsaTsa EOD Programmer and trading model builder
> http://www.ferra4models.com
> http://fun.ferra4models.com
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, "wetrade2002"
> <wetrade2002@xxxx> wrote:
> >
> > Hi
> >
> > How can I do a system test in Metastock that
> >
> > 1) Buys a stock intraday when the price is at $3.00
> >
> > 2) Sell if the price reaches $2.90
> >
> > 3) Sell if the price reaches $3.20.
> >
> > Please help.
> >
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/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/
|