+
+ {#if rawDataHistory?.length > 0}
+
+
+
+
+ {formatDate(optionHistoryList?.at(0)?.date)}:
+
+
+ Vol:
+ {optionHistoryList?.at(0)?.volume?.toLocaleString("en-US")}
+
+
+ OI:
+ {optionHistoryList?.at(0)?.open_interest?.toLocaleString("en-US")}
+
+
+ Avg:
+ ${optionHistoryList?.at(0)?.mark}
+
+
+ Prem:
+ {abbreviateNumber(optionHistoryList?.at(0)?.total_premium, true)}
+
+
+ IV:
+ {(optionHistoryList?.at(0)?.implied_volatility * 100)?.toLocaleString(
+ "en-US",
+ )}%
+
+
+
+ {#if $screenWidth > 640}
+
+
+ {#each ["Vol/OI", "IV"] as item}
+
+ {/each}
+
+
+ {#if isLoaded}
+
+ {:else}
+
+ {/if}
+
+
+ {/if}
+
+
+ {:else}
+
+ No historical data available yet for the given contract
+
+ {/if}
+
+