PureBytes Links
Trading Reference Links
|
I don't think you're using IIF correctly. You
might try something like this:
Length = ParamList("Regression Length", "Long|Mid|Short");
ROCFactor = IIf(Length == "Long", 1.5, 0);
ROCFactor = IIf(Length
== "Mid", 2, ROCfactor);
ROCFactor = IIf(Length
== "Short", 3, ROCFactor);
ERFactor = IIf(Length
== "Long", 1.25, 0);
ERFactor = IIf(Length
== "Mid", 2.5, ERFactor);
ERFactor = IIf(Length
== "Short", 4, ERFactor);
----- Original Message -----
Sent: Tuesday, April 18, 2006 9:50
PM
Subject: [amibroker] Problem w/ nested
IIf
Can someone PLEASE tell me why the following always returns
3 for ROCfactor and 4 for ERfactor regardless of which ParamList choice is
selected from Parameters on the AA controls? tia
Length =
ParamList("Regression Length", "Long|Mid|Short");
IIf(Length == "Long",
ROCfactor = 1.5, IIf(Length == "Mid", ROCfactor = 2, IIf(Length ==
"Short", ROCfactor = 3,0))); IIf(Length == "Long", ERfactor = 1.25,
IIf(Length == "Mid", ERfactor = 2.5,IIf(Length == "Short", ERfactor =
4,0)));
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 other support material please check also:
http://www.amibroker.com/support.html
YAHOO! GROUPS LINKS
|
|