PureBytes Links
Trading Reference Links
|
Hi,
I have a reversal system I have coded into AB where I know at times it
gives more triggers than I can have equity to enter orders in the next
day. My entry is based on limit orders away from today's price so I
don't know which ones will actually be entered before hand. I may get
say 10 triggers, but only want to enter 6 orders to manage risk, of
which all, any or none may get filled.
I am looking for help as to how to code to rank the triggers, since
ranking the trades using positionscore is after the fact.
eg the basic structure of the code is:
Trigger = (ref(C,-3) - C) > 2*atr(5); // example only
Buy = ref(Trigger,-1) and L < ref(L - 1*atr(5),-1);
BuyPrice = min(Open, ref(L-1*atr(5),-1)); //include gaps
Any help is appreciated,
Regards, David
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/
|