PureBytes Links
Trading Reference Links
|
Hi,
I tried this
SetPositionSize( (IIf (Buy==cond1,50,(IIf (Buy==cond2,20,Null)))), spsPercentOfEquity );
and tried this
SetPositionSize( (IIf (Buy==cond1,50,20)), spsPercentOfEquity );
and both time cond1 would go for 50% or 20% without any particular reason. Something must be wrong with this code...
Louis
2008/6/17 Graham < kavemanperth@xxxxxxxxx>:
perhaps you can try changing to Buy==cond1
2008/6/18 Louis Préfontaine <rockprog80@xxxxxxxxx>:
> Hi,
>
> I am trying to set different positionsize depending on the trigger.
>
> I have two set of rules: cond1 and cond2.
>
> I want to set cond1 as 20% of equity and cond2 as 50%.
>
> Here is what I tried:
>
> Buy = cond1 or cond2;
>
> SetPositionSize( (IIf (Buy=cond1,50,20)), spsPercentOfEquity );
>
> What is wrong with this code?
>
> Thanks,
>
> Louis
>
>
--
Cheers
Graham Kav
AFL Writing Service
http://www.aflwriting.com
__._,_.___
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
__,_._,___
|