PureBytes Links
Trading Reference Links
|
--- In amibroker@xxxxxxxxxxxxxxx, "Ed" <reach1136@xxxx> wrote:
> Graham, thanks....that almost does it.....but how can I get also
> display the Open, High and Low, as in the default price chart?
I think you could do it with a plot command for each of O,H,L,C
with styleNoLine on 3 of them.
But you might as well add a "Title." Here's an example, more complex
than you may want, but...
Title = Name() + ": " + Date() + "\\c55 Open \\c-1" + WriteVal
(O,1.2) + "\\c55 Hi \\c-1" +WriteVal(H,1.2) + "\\c55 Lo \\c-1"
+WriteVal(L,1.2) + " \\c55 Close \\c-1" + WriteVal(C,1.2);
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|