Skip to content

Commit

Permalink
Formel angepasst
Browse files Browse the repository at this point in the history
  • Loading branch information
Velii authored Apr 15, 2021
1 parent a49e45a commit cdae969
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clearing/clearing.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ export class ClearingService {
ws.cell(x, 6).number(c.tradePrice);
ws.cell(x, 7).number(c.fixum);
ws.cell(x, 8).number(
c.volumeBuy -
(c.volumeSell + c.transactionPrice + c.tradePrice + c.fixum),
c.volumeSell -
(c.volumeBuy + c.transactionPrice + c.tradePrice + c.fixum),
);
x++;
});
Expand Down

0 comments on commit cdae969

Please sign in to comment.