goto("/stocks/"+item?.symbol)} class="sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] odd:bg-[#27272A] border-b-[#09090B] cursor-pointer">
- |
+ |
{item?.symbol}
|
-
+ |
{item?.name.length > 20 ? item?.name.slice(0,20) + "..." : item?.name}
|
-
+ |
{item?.marketCap !== null ? abbreviateNumber(item?.marketCap,true) : '-'}
|
-
+ |
{item?.revenue !== null ? abbreviateNumber(item?.revenue,true) : '-'}
|
-
+ |
{item?.date !== null ? new Date(item?.date)?.toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', daySuffix: '2-digit' }) : '-'}
|
-
-
+ |
{item?.adjDividend !== null ? '$'+item?.adjDividend?.toFixed(2) : 'n/a'}
-
- |
+
-
+ |
{item?.paymentDate !== null ? new Date(item?.paymentDate)?.toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', daySuffix: '2-digit' }) : '-'}
|
{/each}