SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : TA-Quotes Plus -- Ignore unavailable to you. Want to Upgrade?


To: Barry Hightower who wrote (4183)5/14/1998 9:04:00 PM
From: William G. Murray  Read Replies (2) | Respond to of 11149
 
Has anyone been able to get into the Q+ 800 number tonight?

B.M.



To: Barry Hightower who wrote (4183)5/14/1998 9:50:00 PM
From: Bob Jagow  Respond to of 11149
 
Not me, please, Barry ;)
Don't think anyone provides endofday bid-ask (some services do show
the b/a if vol = 0). If you want to scan for stocks with big spreads
(perhaps to avoid them), might try looking for those that often close
at the hi or low. Not sure of the best way, for R2 maybe
-----
output = "bigspreads.lst";
issuetype common;
integer i, hits;
hits:= 0;
for i = -20 to 0 do
if close(i) = low(i) or close(i) = high(i) then
hits:= hits +1;
endif;
next i;
If hits > 10 then
println symbol,",",hits;
endif;
---------
Display the output sorted by hits to see how it works.
The R2 net download just now showed BTW.

Bob