Barclays Bank growth metrics data for the quarter ended Jun 2022. These growth metrics cover 24 quarters of results from Dec 2012 through Jun 2022, standardized by Business Quant from the company’s SEC filings.
| Growth Metrics | Dec2012 | Mar2013 | Jun2013 | Sep2013 | Dec2013 | Mar2014 | Jun2014 | Sep2014 | Dec2014 | Mar2015 | Jun2015 | Sep2015 | Dec2015 | Mar2016 | Jun2016 | Sep2016 | Dec2016 | Mar2017 | Jun2017 | Sep2017 | Dec2017 | Dec2019 | Mar2022 | Jun2022 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Growth Ratios | ||||||||||||||||||||||||
| Dividend Coverage Ratio Growth (1y)Div. Cover Growth (1y) | -142.09% | |||||||||||||||||||||||
| Return on Assets [ROA] Growth (1y)ROA Growth (1y) | 7.00 | 6.00 | 5.00 | -3.00 | -36.00 | -40.00 | -24.00 | -26.00 | 1.00 | 1.00 | -13.00 | -3.00 | 19.00 | 28.00 | 9.00 | 1.00 | -16.00 | |||||||
| Return on Assets [ROA] Growth (3y)ROA Growth (3y) | -44.00 | -28.00 | -33.00 | -32.00 | -32.00 | -16.00 | -12.00 | -28.00 | -29.00 | 4.00 | -21.00 | |||||||||||||
| Return on Assets [ROA] Growth (5y)ROA Growth (5y) | 16.00 | -47.00 | -26.00 | -1.00 | 5.00 | 29.00 | ||||||||||||||||||
| Return on Assets [ROA] (QoQ)ROA (QoQ) | 6.00 | 0.00 | -6.00 | -3.00 | -27.00 | -4.00 | 10.00 | -5.00 | 0.00 | -5.00 | -3.00 | 5.00 | 22.00 | 4.00 | -22.00 | -4.00 | 6.00 | 1.00 |
Pull Barclays Bank'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=ATMP&statement=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "ATMP", "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=ATMP&statement=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();