PureBytes Links
Trading Reference Links
|
Hello - I am having trouble working out how to enter and scale out on
the same bar:
This code enters my position:
if (entrybar[i]==1)
{
Buy[i] = 1;
BuyPrice[i] = O[i];
}
This code exits at a 5 point profit on the same bar:
if (entrybar[i]==1)
{
Buy[i] = sigScaleOut;
BuyPrice[i] = O[i] + 5; // ie. 5 points from my original
buyprice
}
Then I finally sell:
if (exitbar[i]==1)
{
Sell[ i ] = 1;
SellPrice[i] = O[i];
}
However, the 5 point profit scaleout isn't working in the backtester
- maybe because of two "Buyprice" instructions on the same bar???
Can anyone advise on the correct code to do this on the same bar
please - thanks!
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/
|