PureBytes Links
Trading Reference Links
|
You can plot as many stocks as you like using the Foreign():
// To plot a single price array:
Plot(Foreign("MSFT","C"),"MSFT",1,1);
// To plot candlesticks:
O = Foreign("MXIM","O");
H = Foreign("MXIM","H");
L = Foreign("MXIM","L");
C = Foreign("MXIM","C");
Plot(C,"MXIM",1,64);
If anybody knows a better way to plot candlesticks from a Foreign function
please let me know.
Good luck,
Herman.
-----Original Message-----
From: mmqp [mailto:mmqp@x...]
Sent: Saturday, July 20, 2002 1:28 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Anyone tries to display two ticker on the same
window? TIA.
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|