diff --git a/src/lib/components/Infobox.svelte b/src/lib/components/Infobox.svelte index cf0577ff..5db88860 100644 --- a/src/lib/components/Infobox.svelte +++ b/src/lib/components/Infobox.svelte @@ -1,14 +1,15 @@
+
{companyName} has {abbreviateNumber( rawData?.sharesOutStanding, false, @@ -58,9 +54,12 @@ shares outstanding. The number of shares has increased by {rawData?.sharesYoY}% in one year.
The latest short interest is {abbreviateNumber( rawData?.sharesShort, false, )}, so {rawData?.shortOutStandingPercent}% of the outstanding shares have been sold short.
The PE ratio is {rawData?.priceEarningsRatio} and the forward PE ratio is {rawData?.forwardPE}. {rawData?.priceEarningsToGrowthRatio !== null @@ -192,51 +197,60 @@ : ""}
{#if rawData?.enterpriseValue !== null} {$displayCompanyName} has an Enterprise Value (EV) of {abbreviateNumber( rawData?.enterpriseValue, @@ -271,37 +283,44 @@ Currently the Enterprise Value (EV) is not available for {$displayCompanyName}. {/if}
The company has a current ratio of {rawData?.currentRatio}, with a Debt / Equity ratio of {rawData?.debtEquityRatio}.
Return on equity (ROE) is {rawData?.returnOnEquity}% and return on capital (ROIC) is {rawData?.returnOnInvestedCapital}%.
The stock price has increased by {rawData?.change1Y}% in the last 52 weeks. The beta is {rawData?.beta}, so {companyName}'s price volatility has been {rawData?.beta > 0 ? "higher" : "lower"} than the market average.
{#if rawData?.revenue !== null && rawData?.revenue !== 0} In the last 12 months, {companyName} had revenue of {abbreviateNumber( rawData?.revenue, @@ -555,9 +592,12 @@ in profits. Earnings per share was {rawData?.eps}. {/if}
The company has {abbreviateNumber( rawData?.cashAndCashEquivalents, false, @@ -636,9 +678,12 @@ false, )}.
In the last 12 months, operating cash flow was {abbreviateNumber( rawData?.operatingCashFlow, false, @@ -717,16 +763,20 @@ false, )}.
{#if rawData?.grossProfitMargin !== 0 && rawData?.grossProfitMargin !== null} Gross margin is {checkValue( rawData?.grossProfitMargin, @@ -775,9 +825,12 @@ )}% and {checkValue(rawData?.netProfitMargin, "int")}%. {/if}
{#if rawData?.annualDividend !== null && rawData?.dividendYield !== null} {$stockTicker} pays an annual dividend of ${rawData?.annualDividend}, @@ -871,9 +930,12 @@ {$stockTicker} does not appear to pay any dividends at this time. {/if}
{#if rawData?.priceTarget && rawData?.upside && rawData?.analystRating} @@ -958,9 +1023,12 @@ Currently there are no analyst rating for {$stockTicker}. {/if}
The last stock split was on {new Date( @@ -1028,9 +1097,12 @@ {rawData?.splitType} split with a ratio of {rawData?.splitRatio}.