PureBytes Links
Trading Reference Links
|
Thanks Ed, but that doesn't work, actually I had double slashes before but
forgot to put them back into this template.
I think it would be great if we could launch and refresh the 3D chart during
afl code execution... it would open the door to lots of nice applications.
Thanks for the try!
herman
-----Original Message-----
From: ed nl [mailto:ed2000nl@xxxxxxx]
Sent: Monday, September 06, 2004 10:04 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] 3D charts from the AA and Indicators
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]
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 --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/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/
|