PureBytes Links
Trading Reference Links
|
Thanks...
-----Original Message-----
From: Fred [mailto:fctonetti@xxxxxxxxx]
Sent: Sunday, April 13, 2003 20:52
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: My Real World System for IBM
I haven't put the newest version there yet ... I will ...
--- In amibroker@xxxxxxxxxxxxxxx, "Nurudin Kaba" <n.kaba@xxxx> wrote:
> Re: My Real World System for IBMI noticed the Equity code now
includes the
> Buy and Hold entry...is this available in the files section of the
amibroker
> group?
>
> Thanks
> -----Original Message-----
> From: Fred Tonetti [mailto:ftonetti@x...]
> Sent: Sunday, April 13, 2003 20:41
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Re: My Real World System for IBM
>
>
> One way to get the trades to be same day trades is to remove the
ExRem
> statements i.e.
>
>
>
> SetTradeDelays(0,0,0,0);
>
> Buy = IIf(Cross(C, Ref(H, -1)), 1, 0);
>
> BuyPrice = IIf(O > Ref(H, -1), O, Ref(H, -1) + 0.20);
>
> Sell = C;
>
> Short = IIf(Cross(Ref(L, -1), C), 1, 0);
>
> ShortPrice = IIf(O < Ref(L, -1), O, Ref(L, -1) - 0.20);
>
> Cover = C;
>
> //Buy = ExRem(Buy, Sell);
>
> //Sell = ExRem(Sell, Buy);
>
> //Short = ExRem(Short, Cover);
>
> //Cover = ExRem(Cover, Short);
>
>
>
>
>
>
> Yahoo! Groups Sponsor
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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 the Yahoo! Terms of
Service.
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 ---------------------~-->
Get a FREE REFINANCE QUOTE - click here!
http://us.click.yahoo.com/2CXtTB/ca0FAA/i5gGAA/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/
|