Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
fix(putOrder): remove lower and upper bound
Browse files Browse the repository at this point in the history
Use priceBound.
  • Loading branch information
albertosantini committed Nov 8, 2016
1 parent de1b716 commit ee442ee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/server/routes/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,7 @@ function putOrder(req, response) {
type: req.body.type,
expiry: req.body.expiry,
price: req.body.price,
lowerBound: req.body.lowerBound,
upperBound: req.body.upperBound,
priceBound: req.body.priceBound,
stopLossOnFill: req.body.stopLossOnFill,
takeProfitOnFill: req.body.takeProfitOnFill,
trailingStopLossOnFill: req.body.trailingStopLossOnFill
Expand Down

0 comments on commit ee442ee

Please sign in to comment.