PureBytes Links
Trading Reference Links
|
Hi,
I believe that the following will mostly do what you are after.
Though it will take a total of N positions, which may end up being
all Long, all Short, or any combination in between, based entirely on
the magnitude of the previous bar's gains/losses. All positions are
held for a single trading day, enter at Open, exit at Close.
Off the top of my head I don't know how to restrict Long separate
from Short for a total of 1/2N Long + 1/2N Short = N max positions
other than writing custom backtest code (which I don't have time to
try out right now, sorry, gotta run).
Mike
MaxPositions = 10;
SetTradeDelays(0, 0, 0, 0);
SetOption("AllowSameBarExit", true);
SetOption("MaxOpenPositions", MaxPositions);
PositionSize = -100/MaxPositions;
BuyPrice = ShortPrice = Open;
SellPrice = CoverPrice = Close;
Gain = Close - Open;
PositionScore = Ref(Gain, -1);
Buy = Sell = PositionScore <= 0;
Short = Cover = PositionScore > 0;
--- In amibroker@xxxxxxxxxxxxxxx, "droskill" <droskill@xxx> wrote:
>
> Hey,
>
> I'm trying to do a simple system, and I'm not sure how to
accomplish it.
>
> - Look at the returns for the prior day
> - Buy the top N stocks that had the lowest returns for the prior day
> - Sell (short) the top N stock that had the highest returns for the
> prior day
> - Buy (Sell/Short) the open, Sell (Buy/Cover) the close
>
> I've tried to set this up with the rotational strategy and can't get
> it work - it holds positions more than one day.
>
> Any help greatly appreciated!
>
------------------------------------
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|