PureBytes Links
Trading Reference Links
|
hello,
if I want to loop on differents functions ( after a calling with
#include ^_-,
I can write:
Choice=Param("Choice",1,1,10,1);
if(Choice==1)
find=func_1(C);
else
find=func_2(C);
Plot(find,"",2,1); // IT WORKS FINE
Why I can't write
find= printf("func_" + NumToStr(Choice,1,True) + "(C)");
//returns string func_2(C);
Plot(find,"",2,1); // BAD
stephane
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|