PureBytes Links
Trading Reference Links
|
Owen,
Such numbers are displayed when exit signal (sell or cover)
is not 1 (true) but some higher number.
This is used by ApplyStop/Equity to mark exits generated by stops
This is explained in
http://www.amibroker.com/guide/afl/afl_view.php?name=EQUITY
As you can see there are some reserved numbers:
1 - regular exit
2 - max. loss
3 - profit target
4 - trailing
5 - ruin stop
6 - n-bar stop
If you assign the number higher than 6 to either sell or cover you will
get
Long( number )
or
Short (number)
displayed in the result list. This is quite useful if you want to
display additional information about the reason of exit.
Say
... your rules here ....
Sell = IIF( DayOfWeek() == 5, 10, Sell ); // exit long trades on friday and mark it on the report
You will get
Long( 10 )
displayed in the trade list for trade that were exited by the rule above (exit at friday)
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "Owen Davies" <owen5819@xxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Tuesday, September 30, 2003 1:58 AM
Subject: [amibroker] Odd question about AA reports
> No doubt this would be an RTFM, if only I could figure out how to locate the
> necessary information, but ...
>
> I've just done a "system" test, and each item in the "Trade" column ends
> with a number in parentheses: "Long (120)," "Short (118)," and so on. I
> have no idea what they mean or why they have appeared in this test but not
> in others. Can anyone help me out?
>
> I've noticed these numbers occasionally before, but just filed it for later
> study. This time the exits are not where I intended, and I'm looking hard
> at every bit of information I can find.
>
> Thanks.
>
> Owen Davies
>
>
>
> Send BUG REPORTS to bugs@xxxxxxxxxxxxx
> Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|