PureBytes Links
Trading Reference Links
|
Sounds good, but alas, I have a C-- average rating. :-)
Cheers,
Graham
http://groups.msn.com/ASXShareTrading
http://groups.msn.com/FMSAustralia
-----Original Message-----
From: jehmac [mailto:jehmac@xxxxxxxxx]
Sent: Thursday, 10 April 2003 1:48 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: QT and zero volume intervals
If you are familiar with C++, and are feeling adventurous, you can
probably change this by directly modifying the QT plugin, as the full
source code for it is available in the ADK.
--- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanagh@xxxx> wrote:
> 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
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/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Rent DVDs Online-No late fees! Try Netflix for FREE!
http://us.click.yahoo.com/YKLNcC/oEZFAA/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/
|