PureBytes Links
Trading Reference Links
|
Hello,
When I do a:
Edit > Image > Export To File
In Amibroker, a .png file is saved on my hard drive.
On the Volume section of the chart, the value is odd. The date is
old. Why is that?
Here's an example:
http://home.earthlink.net/~bankedout/id18.html
Here's my code for Volume:
//Volume chart
col=IIf(C>O AND Close>Ref(C,-1),colorBrightGreen,IIf(C<Open AND C<Ref
(C,-1),colorRed,colorYellow));
Plot( V, "Volume", col, styleHistogram | styleThick );
Title= EncodeColor (colorWhite) + Name () + " " + WriteIf(Interval()
==86400,"Daily",WriteIf(Interval()==432000,"Weekly",WriteIf(Interval
()==2160000,"Monthly","")))+ EncodeColor
(colorDefault) + " Volume " + WriteVal (V, 1.0) + " " + WriteVal(
DateTime(), formatDateTime );
When I'm looking at the chart prior to Export, the Volume is being
displayed correctly (same date as price).
What can I change, or is the problem out of my control?
Thanks in advance,
Jim
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
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/
|