PureBytes Links
Trading Reference Links
|
Can't you just set the position size in the main AFL code so that you
don't need to know in the CBI?
Otherwise use PositionScore with the condition number passed as part
of the value. For example, if PositionScore is set to some value
that's always greater than zero and less than 1000, then add something
like:
PositionScore = PositionScore + conditionNo*1000;
Then in the CBI, after you've used this information, remove the
condition number part so that signals are still ranked correctly:
sig.PosScore = sig.PosScore % 1000;
Regards,
GP
--- In amibroker@xxxxxxxxxxxxxxx, "Ara Kaloustian" <ara1@xxx> wrote:
>
> I am trying to code the custom backtester...
>
> Issue is:
>
> How do I designate signals to be of a particular type.
>
> Example:
>
> For Condition1, PositionSize = 100;
> For Condition2, PositionSize = 200;
>
> How do I distinguish condition1 from Condition2 once in the CBI??
>
>
> TIA
>
> Ara
>
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/
|