PureBytes Links
Trading Reference Links
|
Herman,
this might work
AlertIf(True, "EXEC C:\\Program Files\\AmiBroker\\AmiQuote\\Quote.exe","Launching 3D Chart", 2);
rgds, Ed
----- Original Message -----
From: Herman van den Bergen
To: AmiBroker YahooGroups
Sent: Monday, September 06, 2004 3:51 PM
Subject: [amibroker] 3D charts from the AA and Indicators
Hello,
Can somebody help me with the last line (Red) of this code template... This
code generates the Optimize.csv file from InLine code and can be used in
from the AA or an Indicators. The objective is to allow me to generate and
refresh 3D charts from afl code, i.e. display the 3D charts immediately at
the end of the afl code.
Right now i am using a custom menu tool item to generate the plot but i
would like it automated so that I can generate multiple plots in sequence.
As always: many thanks for any help you can give!!!
best regards,
herman
----------------------------------------------------------------------------
----
Buy=Sell=Short=Cover=0;
Filter = Status("LastBarInTest");
SetOption("NoDefaultColumns",True);
AddColumn(BarIndex(),"BI",1.0);
fh = fopen("Optimize.csv","w");
z=0;Ostr="";
for(x=1;x<=20;x++)
{
for(y=1;y<=20;y++)
{
z = X*y;
Ostr = Ostr +
NumToStr(z,1.0,False)+","+
NumToStr(x,1.0,False)+","+
NumToStr(y,1.0,False)+"\n";
}
}
fputs(Ostr,fh);
fclose(fh);
AlertIf(True, "EXEC C:\Program
Files\AmiBroker\AmiQuote\Quote.exe","Launching 3D Chart", 2); // <=== NEED
HELP HERE
----------------------------------------------------------------------------
----
[Non-text portions of this message have been removed]
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
ADVERTISEMENT
------------------------------------------------------------------------------
Yahoo! Groups Links
a.. To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
b.. To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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/
|