Thursday, May 1, 2025

Query for finding high dividend paying stocks

 Post the following query in Screen.in, to get list of high dividend yield stocks:


Dividend yield > 6


AND


Dividend last year > 1000


AND


Dividend preceding year > 1000


AND


Profit after tax > 0 

_________________________________________________________________________

you can further add few more filters to know which ones are low priced now

AND

Price to Earning < Industry PE 

AND

%Down from 52w high > 20



No comments:

Post a Comment

Basic Flask web app

 from flask import Flask app = Flask(__name__) #In Flask, URL rules can be added using either the @app.route() decorator or the app.add_url_...