Pg&E growth metrics data for the quarter ended Mar 2011. These growth metrics cover 8 quarters of results from Jun 2009 through Mar 2011, standardized by Business Quant from the company’s SEC filings.
| Growth Metrics | Jun2009 | Sep2009 | Dec2009 | Mar2010 | Jun2010 | Sep2010 | Dec2010 | Mar2011 |
|---|---|---|---|---|---|---|---|---|
| Growth Ratios | ||||||||
| Dividend Coverage Ratio Growth (1y)Div. Cover Growth (1y) | -5.90% | -25.26% | -29.29% | -36.05% | -30.40% | |||
| Dividend Coverage Ratio (QoQ)Div. Cover (QoQ) | 43.34% | -18.57% | 7.14% | -24.76% | 13.84% | -22.96% | -3.10% | -18.11% |
| EBITDA Margin Growth (1y) | 283.00 | 97.00 | -445.00 | -119.00 | -433.00 | |||
| EBITDA Margin (QoQ) | 559.00 | -177.00 | -393.00 | 295.00 | 372.00 | -719.00 | -68.00 | -19.00 |
| EBIT Margin Growth (1y) | 283.00 | 97.00 | -445.00 | -119.00 | -433.00 | |||
| EBIT Margin (QoQ) | 559.00 | -177.00 | -393.00 | 295.00 | 372.00 | -719.00 | -68.00 | -19.00 |
| EBT Margin Growth (1y) | 237.00 | 3.00 | -365.00 | -131.00 | -377.00 | |||
| EBT Margin (QoQ) | 572.00 | -206.00 | -393.00 | 263.00 | 338.00 | -574.00 | -158.00 | 17.00 |
| FCF Margin Growth (1y) | -773.00 | 565.00 | -507.00 | 1,652.00 | 1,721.00 | |||
| FCF Margin (QoQ) | 131.00 | 753.00 | -2323.00 | 666.00 | 1,469.00 | -319.00 | -163.00 | 734.00 |
| FCF Payout Ratio Growth (1y)FCF Cover Growth (1y) | 53.26% | 427.41% | -303.15% | -726.33% | 456.51% | |||
| FCF Payout Ratio (QoQ)FCF Cover (QoQ) | -58.42% | 224.87% | -112.29% | -92.22% | 1,209.64% | -177.48% | 50.00% | 182.93% |
| Gross Margin Growth (1y) | 235.00 | 283.00 | -251.00 | -94.00 | -557.00 | |||
| Gross Margin (QoQ) | -163.00 | 13.00 | -160.00 | 545.00 | -115.00 | -520.00 | -4.00 | 82.00 |
| Interest Coverage Ratio Growth (1y)Interest Cover Growth (1y) | 29.79% | 7.76% | -13.66% | -6.99% | -25.67% | |||
| Interest Coverage Ratio (QoQ)Interest Cover (QoQ) | 30.03% | -5.34% | -12.50% | 20.52% | 7.96% | -24.16% | -5.74% | -3.68% |
| Net Margin Growth (1y) | 40.00 | -184.00 | -249.00 | -81.00 | -189.00 | |||
| Net Margin (QoQ) | 512.00 | -232.00 | -212.00 | -29.00 | 288.00 | -296.00 | -44.00 | -137.00 |
| Operating Margin Growth (1y) | 283.00 | 97.00 | -445.00 | -119.00 | -433.00 | |||
| Operating Margin (QoQ) | 559.00 | -177.00 | -393.00 | 295.00 | 372.00 | -719.00 | -68.00 | -19.00 |
| Return on Assets [ROA] Growth (1y)ROA Growth (1y) | -59.00 | -45.00 | -61.00 | |||||
| Return on Assets [ROA] (QoQ)ROA (QoQ) | -24.00 | 1.00 | -17.00 | -19.00 | -10.00 | -15.00 | ||
| Return on Capital Employed [ROCE] Growth (1y)ROCE Growth (1y) | -32.00 | -40.00 | -111.00 | |||||
| Return on Capital Employed [ROCE] (QoQ)ROCE (QoQ) | -15.00 | 38.00 | -4.00 | -51.00 | -23.00 | -34.00 | ||
| Return on Invested Capital [ROIC] Growth (1y)ROIC Growth (1y) | -179.00 | -123.00 | -129.00 | |||||
| Return on Invested Capital [ROIC] (QoQ)ROIC (QoQ) | -74.00 | -23.00 | -36.00 | -47.00 | -17.00 | -29.00 | ||
| Return on Sales [ROS] Growth (1y)ROS Growth (1y) | 283.00 | 97.00 | -445.00 | -119.00 | -433.00 | |||
| Return on Sales [ROS] (QoQ)ROS (QoQ) | 559.00 | -177.00 | -393.00 | 295.00 | 372.00 | -719.00 | -68.00 | -19.00 |
Pull Pg&E's standardized financial statements into your own models, spreadsheets and apps with the Business Quant Financial Statements API. The request below follows the statement, frequency and period selected above. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/statements?ticker=PCG&statement=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "PCG", "statement": "Growth", "frequency": "Quarter", "period": "all", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/statements?ticker=PCG&statement=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();