PureBytes Links
Trading Reference Links
|
Chris: thanks for sharing...I had finally found the note in the Help file,
not sure why I cant see those things on the first pass...anyway, appreciate
your reply.
Ken
-----Original Message-----
From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf
Of ChrisB
Sent: Wednesday, June 13, 2007 11:41 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] Setting "Divisions" or "Groups" in Parameter Box
Ken
//Something like this?
st = Param("Main Heading outside the Sections", 10,1,10,1);
_SECTION_BEGIN("My First group");
myFirstGroupcolor = ParamColor("My First Color",colorRed); x = Param("Group
1 param 1", 11,1,20,1); y = Param ( "Group 1 param 2", 12,1,20,10); Plot
(EMA(C,x), "", myFirstGroupcolor,1); _SECTION_END();
_SECTION_BEGIN(" My second group");
mySecondGroupcolor = ParamColor("My Second Color",colorBlue); a =
Param("Group 2 param 1", 21,1,20,1); b = Param("Group 2 parm 2", 22,1,20,1);
Plot( EMA(C,a),"",mySecondGroupcolor,1);
_SECTION_END();
// Regards
// ChrisB
Ken Close wrote:
>
>
> I found a code file in which there are dozens of paramter settings.
> The settings are "Grouped" into topics with a tree-like "plus" to
> expand and "minus" to hide the group of parameter statements.
>
> How does one produce the Groups within the Parameter box? Searching
> Help has not provided an answer.
>
> Thanks,
>
> Ken
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
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/
|