PureBytes Links
Trading Reference Links
|
Hi, all.
I'm trying to use the AddColumn/AddTextColumn functions within a
defined function in my explore program. When I do this, it does not
see the AddColumn/AddTextColumn functions in the program, acts like
they are not they. It will not print them to result, and in order for
it to run I must insert NumColumns or an AddColumn line in the main
program. And it totally ignore the AddColumn/AddTextColumn functions
in my custom function. Example:
function ShowResults(type,i)
{
Filter = True;
AddTextColumn(DateTimeToStr(DateTimeQ[i]),"Date:");
AddColumn(i,"i:");
AddColumn(STK[i], "Stoch K-" + i,1.4,colorGreen,colorBlack,75);
AddColumn(STD[i], "Stoch D-" + i,1.4,colorGreen,colorBlack,75);
AddTextColumn(type,"TypeSignal",1.4,IIf(type ==
"Long",colorGreen,colorRed),colorBlack,75);
}
Adding a return makes no difference, either.
Please let me know what to do here.
Thanks,
da interfool
Lew Lepley
------------------------------------
**** 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/
|