Skip to content

Commit

Permalink
add dollar sign
Browse files Browse the repository at this point in the history
  • Loading branch information
mnsrulz authored Sep 10, 2024
1 parent 9b424cd commit dda9297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DeltaGammaHedging.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Expo = (props: IExpo) => {
const gammaOrDelta = (props.exposure == 'dex' ? 'ABS Delta' : 'NET Gamma')

const { dataset, maxPosition } = props.exposure == 'dex' ? data.deltaDataset : data.gammaDataset;
const title = `${symbol.toUpperCase()} ${gammaOrDelta} Hedging Exposure (${dte} DTE)`;
const title = `$${symbol.toUpperCase()} ${gammaOrDelta} Hedging Exposure (${dte} DTE)`;
return <Paper><Typography variant="h6" align="center" gutterBottom>
{title}
</Typography><BarChart
Expand Down

0 comments on commit dda9297

Please sign in to comment.