Skip to content

Commit

Permalink
update text warning
Browse files Browse the repository at this point in the history
  • Loading branch information
GrandSchtroumpf committed Dec 10, 2024
1 parent ea5fd6d commit ae81224
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/simulator/input/SimInputRecurring.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import { CandlestickData } from 'libs/d3';
import { Token } from 'libs/tokens';

const buyWarningMsg = (base: Token) => {
return `The specified buy price for ${base.symbol} is higher than its initial price of the simulation. As a result, your buy budget will be arbitrated in this initial step, potentially impacting the overall ROI calculation.`;
return `The specified buy price for ${base.symbol} is higher than its initial price of the simulation. This means your buy budget may be used for arbitrage in the first step, which could affect the overall ROI.`;
};
const sellWarningMsg = (base: Token) => {
return `The specified sell price for ${base.symbol} is lower than its initial price of the simulation. As a result, your sell budget will be arbitrated in this initial step, potentially impacting the overall ROI calculation.`;
return `The specified sell price for ${base.symbol} is lower than its initial price of the simulation. This means your sell budget may be used for arbitrage in the first step, which could affect the overall ROI.`;
};

interface Props {
Expand Down

0 comments on commit ae81224

Please sign in to comment.