Stock Checkup Flaw Counter

Counts the number of Stock Checkup Flaws at https://research.investors.com/stock-checkup.

Stock Checkup Flaw Counterคืออะไร?

Stock Checkup Flaw Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://crystalbull.com และคุณลักษณะหลักของมันคือ "Counts the number of Stock Checkup Flaws at https://research.investors.com/stock-checkup."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stock Checkup Flaw Counter

ดาวน์โหลดไฟล์ส่วนขยาย Stock Checkup Flaw Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Save time when trying to count Stock Checkup flaws on investors.com.  This extension counts the flaws (according to common IBD Meetup rules) and assigns a letter grade.  Also calculates ROE (return on equity) plus PTM (pre-tax margin), and calculates the average daily liquidity (average daily dollar volume proxy).  Put your calculator and notepad away!

NEW: Calculates share turnover % (50-day Avg Volume / shares available).  On /stock-checkup page, shows turnover of shares outstanding. On /stock-quotes page, also shows turnover of float.  The arrow next to Turnover on the /stock-checkup page shows the Up/Down Volume ratio

Also adds a rudimentary EPS trend chart, so you can see at a glance if earnings may be decelerating.

For more info on these scoring tools, please visit the Petaluma Investor's Business Daily Meetup site: https://sites.google.com/view/petalumaibdmeetup

This tool is for educational purposes only, and not intended to recommend any security.  Use at your own risk!  We are not responsible for errors or omissions.  This is not to be construed as investment advice, and we are not investment advisors.

Browser extension development is supported by user donations.  If you find this extension useful, please consider sending a commensurate donation to support our developers, via this url:  https://www.paypal.com/donate?hosted_button_id=VYB6ZVDTU4KEG


FAQ:
1) "Why is the EPS Trend chart blank for some stocks?"

Good question.  The answer is that some stocks have an "N/A" for either 3Yr EPS, 3Qtr EPS or last EPS. Without 3Y, 3Q, & 1Q, no trend can be drawn.  If the EPS Trend chart is blank, that means not enough data are available to determine a trend.

If you see a very small gap at the righthand end of the chart, that means there is no current estimate.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Stock Checkup Flaw Counter Stock Checkup Flaw Counter
ID hjjmcblclhoojiebngknemobljbjocdi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/stock-checkup-flaw-counte/hjjmcblclhoojiebngknemobljbjocdi
คำอธิบาย Counts the number of Stock Checkup Flaws at https://research.investors.com/stock-checkup.
ขนาดไฟล์ 101 KB
จำนวนการติดตั้ง 467
เวอร์ชันปัจจุบัน 1.30
อัปเดตครั้งล่าสุด 2023-01-20
วันที่เผยแพร่ 2020-06-28
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://crystalbull.com
อีเมล [email protected]
ประเภทการชำระเงิน in_app
URL หน้านโยบายความเป็นส่วนตัว https://www.crystalbull.com/extension-privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stock Checkup Flaw Counter",
    "version": "1.30",
    "manifest_version": 3,
    "description": "Counts the number of Stock Checkup Flaws at https:\/\/research.investors.com\/stock-checkup.",
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [],
    "host_permissions": [
        "*:\/\/*.investors.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.investors.com\/stock-*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/main.css"
            ],
            "run_at": "document_idle",
            "all_frames": false,
            "match_about_blank": false
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Stock Checkup Flaw Counter"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon-32.png",
                "scripts\/inject.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "commands": []
}