StockFetcher Forums · Filter Exchange · outstanding share count<< >>Post Follow-up
jorjax3
13 posts
msg #56561
Ignore jorjax3
11/8/2007 5:10:08 PM

Does anyone know if there is a phrase for outstanding share count.

ex;
outstanding share count below 50m
show stocks where eps is above 0.01
price is between 1 and 10
price is above 20dma on weekly

thanks.

TheRumpledOne
6,407 posts
msg #56567
Ignore TheRumpledOne
11/8/2007 5:51:22 PM

stockfetcher 9/10/2004 2:51:18 PM

We have just added shares outstanding to the list of measures we carry. This value is represented in millions. For example, if you wanted to screen for stocks with more than 1 billion shares outstanding:


Fetcher[show stocks where shares outstanding is above 1000]




Using this measure, you can now create a market capitalization measure. For example:


Fetcher[
set{market_cap, shares outstanding * close}
show stocks where market_cap is above 1000
and add column market_cap
]




Again, since shares outstanding is in millions, the "1000" above represents "one thousand million" or "one billion."

StockFetcher Support


==================================================


SEARCH THE FORUMS AND YOU'LL USUALLY FIND!!

jorjax3
13 posts
msg #56621
Ignore jorjax3
11/9/2007 12:42:31 PM

thank you

jorjax3
13 posts
msg #56627
Ignore jorjax3
11/9/2007 1:57:01 PM

how about if I added "coming out of a down trend" using the following criteria. thanks in advance.

volume is >100000
show stocks where shares outstanding is below 40
show stocks where eps is above 0.00
price is between 1 and 10
the ma(20) has been increasing for the last 5 days
The ma(20) was decreasing for the last x days lag x days ???? this is the line I can't figure out.


TheRumpledOne
6,407 posts
msg #56629
Ignore TheRumpledOne
modified
11/9/2007 2:10:54 PM

Fetcher[
set{ bma20, days(ma(20) above ma(20) 1 day ago, 100) }
set{ ama20, days(ma(20) below ma(20) 1 day ago, 100) }

draw ama20 on plot ama20
draw bma20 on plot ama20

do not draw ma(20)

add column ama20
add column bma20

shares outstanding is below 40
eps is above 0.00
price is between 1 and 10
ma(20) has been increasing for the last 5 days
ma(20) has been decreasing for the last 5 days lag 5

]




ama20 is the number of days ma(20) increasing

bma20 is the number of days ma(20) decreasing

HTH.

jorjax3
13 posts
msg #56672
Ignore jorjax3
11/11/2007 1:32:10 PM

TRO,
thank you for responding, however I'm not grasping the equation of the top two lines.
what I'm trying to accomplish is to find a stock that has been in a downtrend for a few months and has just recently turned back up on the 20 day ma.

Also, I see you kept my lag Iine in on the bottom. that is also getting me more confused.

any help in layman's terms would be great.

all the best.

TheRumpledOne
6,407 posts
msg #56678
Ignore TheRumpledOne
11/11/2007 10:01:07 PM

This tells you how many days the ma(20) is going down:

set{ bma20, days(ma(20) above ma(20) 1 day ago, 100) }


This tells you how many days the ma(20) is going up:

set{ ama20, days(ma(20) below ma(20) 1 day ago, 100) }

TheRumpledOne
6,407 posts
msg #56679
Ignore TheRumpledOne
11/11/2007 10:05:41 PM

Fetcher[
set{T20, count(20 day slope of the close above 0,1)}
set{T60, count(60 day slope of the close above 0,1)}
set{T200, count(200 day slope of the close above 0,1)}

Set{a1, T200 * 1}
Set{a2, T60 * 10}
Set{a3, T20 * 100}

Set{aa, a1 + a2}
Set{TREND, aa + a3}

and add column Trend

T60 equal 0
T20 equal 1

sort column 5 descending

market is nasdaq 100
]



60 day down trend, 20 day up trend.

HTH.

StockFetcher Forums · Filter Exchange · outstanding share count<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.