PureBytes Links
Trading Reference Links
|
With the QT plugin I get time intervals with zero volume displayed on the
charts. QT saves data when the bid/ask orders change at the top level, so if
say a new order is placed at the first level then a value gets stored by QT
with no traded volume. This is then imported by AB as a trade figure.
Now I would like to either remove these zero volume intervals, or add all
zero volume intervals to the charts.
I tried removing with
O=IIf(V==0,Null,O);
H=IIf(V==0,Null,H);
L=IIf(V==0,Null,L);
C=IIf(V==0,Null,C);
But of course, this just removed the dash at this interval leaving a blank
space.
Any suggestions?
Cheers,
Graham
http://groups.msn.com/ASXShareTrading
http://groups.msn.com/FMSAustralia
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Save Smiley. Help put Messenger back in the office.
http://us.click.yahoo.com/4PqtEC/anyFAA/i5gGAA/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/
|