PureBytes Links
Trading Reference Links
|
Given that the name of the method is EnterTrade, I would assume that
the boolean is to toggle between the two types of entry (true for
long, false for short).
If you want to cancel a trade signal, just set the PosSize property to
0 or the Price to -1.
e.g.
for (i = 0; i < BarCount; i++) {
for (sig = bo.getFirstSignal(i); sig; sig = bo.getNextSignal(i)) {
sig.PosSize = 0;
}
}
Mike
--- In amibroker@xxxxxxxxxxxxxxx, "Ara Kaloustian" <ara1@xxx> wrote:
>
> bo.EnterTrade(i, sig.Symbol, True, sig.Price, sig.PosSize,
sig.PosScore);
>
> In custom backtest the function EnterTrade(...True,...)
>
> True seems to mean Long Trade
>
> Is False No trade or a Short trade?
>
>
>
> Thanks
>
> Ara
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL 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/
|