Sector Statistics Report

Sector: Energy

Quarter: Q3 2025

Generated: October 4, 2025 at 12:24 AM

Time Period: current

Download CSV Print Report

Executive Summary

Total Companies Analyzed
6
COUNT(DISTINCT symbol) WHERE sector = 'Energy'
Beat Estimates
100.0%
Percentage of companies exceeding estimates
Average QoQ Revenue Growth
-2.70%
AVG((current_revenue - prev_quarter_revenue) / prev_quarter_revenue * 100)
Average YoY Revenue Growth
+0.00%
AVG((current_revenue - prev_year_revenue) / prev_year_revenue * 100)
Average QoQ EPS Growth
-14.80%
AVG((current_eps - prev_quarter_eps) / ABS(prev_quarter_eps) * 100)
Average YoY EPS Growth
+0.00%
AVG((current_eps - prev_year_eps) / ABS(prev_year_eps) * 100)

Methodology

Data Collection Period

Data collected for fiscal quarters ending within the reporting period. Companies are matched by ticker symbol across time periods.

Growth Calculations

Earnings Surprises

Price Reaction

Stock price percentage change following earnings announcement (typically measured as close-to-close or intraday swing).

Detailed Company Data

The following table shows individual company data used in calculations. Total records: 6

Symbol Company Report Date Revenue Rev Growth % EPS EPS Est. EPS Growth % Surprise Reaction %
UROY Uranium Royalty Corp Sep 11, 2025 N/A N/A $-0.01 $-0.01 N/A +$0.00 +6.9%
DLNG-PA Dynagas LNG Partners LP Sep 8, 2025 $0.04B N/A $0.25 $0.24 N/A +$0.01 +0.7%
DLNG Dynagas LNG Partners LP Sep 8, 2025 $0.04B N/A $0.25 $0.24 N/A +$0.01 +7.4%
IMPPP Imperial Petroleum Inc Sep 5, 2025 $0.04B N/A $0.38 $0.04 N/A +$0.34 +0.3%
IMPP Imperial Petroleum Inc Sep 5, 2025 $0.04B N/A $0.38 $0.04 N/A +$0.34 +15.0%
FLNG FLEX LNG Ltd Aug 20, 2025 $0.09B -2.7% $0.46 $0.45 -14.8% +$0.01 +5.2%

SQL Query Reference

Main Statistics Query

SELECT
    e.symbol,
    e.revenue as current_revenue,
    e.eps as current_eps,

    -- Previous quarter (flexible 2-5 month lookback)
    (SELECT revenue FROM earningscalendar
     WHERE symbol = e.symbol
     AND fiscalDateEnding < e.fiscalDateEnding
     AND fiscalDateEnding >= DATE_SUB(e.fiscalDateEnding, INTERVAL 5 MONTH)
     ORDER BY fiscalDateEnding DESC LIMIT 1) as prev_quarter_revenue,

    -- Previous year (11-14 month lookback)
    (SELECT revenue FROM earningscalendar
     WHERE symbol = e.symbol
     AND fiscalDateEnding BETWEEN DATE_SUB(e.fiscalDateEnding, INTERVAL 14 MONTH)
         AND DATE_SUB(e.fiscalDateEnding, INTERVAL 11 MONTH)
     ORDER BY ABS(DATEDIFF(fiscalDateEnding, DATE_SUB(e.fiscalDateEnding, INTERVAL 1 YEAR)))
     LIMIT 1) as prev_year_revenue

FROM earningscalendar e
JOIN ticker t ON e.symbol = t.ticker
WHERE t.sector = 'Energy'
AND e.fiscalDateEnding IS NOT NULL
AND e.revenue > 1000000  -- Minimum revenue threshold

← Back to Sector Page