PureBytes Links
Trading Reference Links
|
Hi Ed,
>From a brief look though it, I can't see any problems with it. The
loops could perhaps be simplified a bit, but as they are it looks to
me like they should work okay.
An example of simplifying the loops (not sure if this will preserve
the indents or not):
for (i = 1; i < BarCount; i++) {
cnt = 0;
if (Buy[i] == 1) {
BuyAdjusted[i] = 1;
while (++i < BarCount) {
if (++cnt == nBar) {
Sell[i] = 5;
SellPrice[i] = O[i];
break;
}
}
}
else {
if (Short[i] == 1) {
ShortAdjusted[i] = 1;
while (++i < BarCount) {
if (++cnt == nBar) {
Cover[i] = 5;
CoverPrice[i] = O[i];
break;
}
}
}
}
}
I haven't tested this, but it looks like it should work as well.
Regards,
GP
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/
|