diff --git a/src/routes/stocks/[tickerID]/statistics/+page.svelte b/src/routes/stocks/[tickerID]/statistics/+page.svelte
index bb4d3655..66f508e2 100644
--- a/src/routes/stocks/[tickerID]/statistics/+page.svelte
+++ b/src/routes/stocks/[tickerID]/statistics/+page.svelte
@@ -437,10 +437,7 @@
>
| Employee Count | Employee Count
- In the last 12 months, {companyName} had revenue of $97.15 billion
- and earned $12.74 billion in profits. Earnings per share was $3.65.
+ In the last 12 months, {companyName} had revenue of {abbreviateNumber(
+ rawData?.revenue,
+ true,
+ )}
+ and earned {abbreviateNumber(rawData?.netIncome, true)} in profits.
+ Earnings per share was ${rawData?.eps}.
| Revenue | Revenue
97.15B | {abbreviateNumber(rawData?.revenue)}
|
| 17.71B | {abbreviateNumber(rawData?.grossProfit)}
|
| 8.14B |
- | Pretax Income
- |
- 7.61B | {abbreviateNumber(rawData?.operatingIncome)}
|
| 12.74B | {abbreviateNumber(rawData?.netIncome)}
|
| 13.24B | {abbreviateNumber(rawData?.ebitda)}
|
| 8.14B | {abbreviateNumber(rawData?.ebit)}
|
| $3.65 | {rawData?.eps}
@@ -656,9 +646,14 @@
- The company has $33.65 billion in cash and $12.78 billion in
- debt, giving a net cash position of $20.87 billion or $6.53 per
- share.
+ The company has {abbreviateNumber(
+ rawData?.cashAndCashEquivalents,
+ true,
+ )} in cash and {abbreviateNumber(rawData?.totalDebt, true)} in debt,
+ giving a net cash position of {abbreviateNumber(
+ rawData?.cashAndCashEquivalents - rawData?.totalDebt,
+ true,
+ )}.
| 33.65B | {abbreviateNumber(rawData?.cashAndCashEquivalents)}
|
| 12.78B | {abbreviateNumber(rawData?.totalDebt)}
|
| 20.87B | {abbreviateNumber(
+ rawData?.cashAndCashEquivalents - rawData?.totalDebt,
+ )}
| Net Cash Per Share
+ >Retained Earnings
|
$6.53 | {abbreviateNumber(rawData?.retainedEarnings)}
| Equity (Book Value)
+ >Total Assets
|
70.71B |
- | Book Value Per Share
- |
- 21.81 | {abbreviateNumber(rawData?.totalAssets)}
|
| 25.80B | {abbreviateNumber(rawData?.workingCapital)}
@@ -735,9 +725,17 @@
- In the last 12 months, operating cash flow was $14.48 billion
- and capital expenditures -$10.87 billion, giving a free cash
- flow of $3.61 billion.
+ In the last 12 months, operating cash flow was {abbreviateNumber(
+ rawData?.operatingCashFlow,
+ true,
+ )}
+ and capital expenditures {abbreviateNumber(
+ rawData?.capitalExpenditure,
+ true,
+ )}, giving a free cash flow of {abbreviateNumber(
+ rawData?.freeCashFlow,
+ true,
+ )}.
| 14.48B | {abbreviateNumber(rawData?.operatingCashFlow)}
|
| -10.87B | {abbreviateNumber(rawData?.capitalExpenditure)}
|
| 3.61B | {abbreviateNumber(rawData?.freeCashFlow)}
|
| $1.13 | {rawData?.freeCashFlowPerShare}
@@ -788,8 +786,8 @@
- Gross margin is 18.23%, with operating and profit margins of
- 8.38% and 13.07%.
+ Gross margin is {rawData?.grossProfitMargin}%, with operating
+ and profit margins of {rawData?.operatingProfitMargin}% and {rawData?.netProfitMargin}%.
| 18.23% | {rawData?.grossProfitMargin}%
|
| 8.38% | {rawData?.operatingProfitMargin}%
|
| 8.66% | {rawData?.pretaxProfitMargin}%
|
| 13.07% | {rawData?.netProfitMargin}%
|
| 13.63% | {rawData?.ebitdaMargin}%
|
| 8.38% | {rawData?.ebitMargin}%
|
| 1.80% | {rawData?.freeCashFlowMargin}%
|