Skip to content

Commit

Permalink
[CT-629] Fix entryPrice calc (backport #2415) (#2416)
Browse files Browse the repository at this point in the history
Co-authored-by: dydxwill <[email protected]>
  • Loading branch information
mergify[bot] and dydxwill authored Oct 1, 2024
1 parent bf91d95 commit fbf6d7d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ describe('LiquidationHandler', () => {
perpetualId: testConstants.defaultPerpetualMarket.id,
side: PositionSide.LONG,
status: PerpetualPositionStatus.OPEN,
size: '10',
size: '5',
maxSize: '25',
sumOpen: '10',
entryPrice: '15000',
Expand Down Expand Up @@ -385,7 +385,7 @@ describe('LiquidationHandler', () => {
defaultPerpetualPosition.openEventId,
),
{
sumOpen: Big(defaultPerpetualPosition.size).plus(totalFilled).toFixed(),
sumOpen: Big(defaultPerpetualPosition.sumOpen!).plus(totalFilled).toFixed(),
entryPrice: getWeightedAverage(
defaultPerpetualPosition.entryPrice!,
defaultPerpetualPosition.size,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ describe('OrderHandler', () => {
perpetualId: testConstants.defaultPerpetualMarket.id,
side: PositionSide.LONG,
status: PerpetualPositionStatus.OPEN,
size: '10',
size: '5',
maxSize: '25',
sumOpen: '10',
entryPrice: '15000',
Expand Down Expand Up @@ -432,7 +432,7 @@ describe('OrderHandler', () => {
defaultPerpetualPosition.openEventId,
),
{
sumOpen: Big(defaultPerpetualPosition.size).plus(totalFilled).toFixed(),
sumOpen: Big(defaultPerpetualPosition.sumOpen!).plus(totalFilled).toFixed(),
entryPrice: getWeightedAverage(
defaultPerpetualPosition.entryPrice!,
defaultPerpetualPosition.size,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ BEGIN
perpetual_position_record."side", order_side) THEN
sum_open = dydx_trim_scale(perpetual_position_record."sumOpen" + fill_amount);
entry_price = dydx_get_weighted_average(
perpetual_position_record."entryPrice", perpetual_position_record."sumOpen",
perpetual_position_record."entryPrice", perpetual_position_record."size",
maker_price, fill_amount);
perpetual_position_record."sumOpen" = sum_open;
perpetual_position_record."entryPrice" = entry_price;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ BEGIN
IF dydx_perpetual_position_and_order_side_matching(perpetual_position_record."side", side) THEN
sum_open := dydx_trim_scale(perpetual_position_record."sumOpen" + size);
entry_price := dydx_get_weighted_average(
perpetual_position_record."entryPrice", perpetual_position_record."sumOpen", price, size
perpetual_position_record."entryPrice", perpetual_position_record."size", price, size
);
perpetual_position_record."sumOpen" = sum_open;
perpetual_position_record."entryPrice" = entry_price;
Expand Down

0 comments on commit fbf6d7d

Please sign in to comment.