Skip to content

Commit

Permalink
deribit parseOrder stopPrice
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Jan 19, 2021
1 parent 5220e43 commit 3c7dcc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/deribit.js
Expand Up @@ -1096,7 +1096,7 @@ module.exports = class deribit extends Exchange {
trades = this.parseTrades (trades, market);
}
const timeInForce = this.parseTimeInForce (this.safeString (order, 'time_in_force'));
const stopPrice = undefined;
const stopPrice = this.safeValue (order, 'stop_price');
const postOnly = this.safeValue (order, 'post_only');
return {
'info': order,
Expand Down

0 comments on commit 3c7dcc7

Please sign in to comment.