PureBytes Links
Trading Reference Links
|
I wish to nest Function2 inside Function1 so that Function2 can be
called multiple times to perform slightlt different calculations
within Function1.
The syntax checker highlights the line with Function2 and
displays "Error 32. Syntax Error, probably missing semicolon at the
end of the previous line".
If I insert } prior to the Function2 line the compile error goes.
Is there a way around this? Or, do I have to rethink my approach.
A section of the code follows.
Thanks
Graham
pPrice = ParamField("Price field",-1);
pMAType = ParamList("MA Type", "1 - DEMA|2 - EMA|3 - Linear
Regression|4 - SMA|5 - TEMA|6 - Wilders|7 - WMA", 4 - 1);
// "defaultval" is Zero based, so need to subtract 1 to match
list
pMaxPerMA = Param("Max MA Periods", 52, 26, 104, 1, 10);
function Function1(iPrice, iMAType, iMaxPerMA)
{
xMAType = StrToNum( StrLeft( iMAType, 1 ) );
function Function2(iiPrice, iiMAType, iiMAPer)
{
switch (iiMAType)
{
case 1:
xaMA = DEMA(iiPrice, iiMAPer);
break;
}
}
}
------------------------------------
**** 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/
|