Merge pull request #98 from tiagosiebler/2.0.5
2.0.5: add missing inverse position mode endpoints
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "bybit-api",
|
||||
"version": "2.0.4",
|
||||
"version": "2.0.5",
|
||||
"description": "Node.js connector for Bybit's Inverse & Linear REST APIs and WebSockets",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -326,6 +326,29 @@ export class InverseClient extends SharedEndpoints {
|
||||
return this.requestWrapper.get('v2/private/trade/closed-pnl/list', params);
|
||||
}
|
||||
|
||||
setPositionMode(params: {
|
||||
symbol: string;
|
||||
mode: 0 | 3;
|
||||
}): GenericAPIResponse {
|
||||
return this.requestWrapper.post('v2/private/position/switch-mode', params);
|
||||
}
|
||||
|
||||
setSlTpPositionMode(params: {
|
||||
symbol: string;
|
||||
tp_sl_mode: 'Full' | 'Partial';
|
||||
}): GenericAPIResponse {
|
||||
return this.requestWrapper.post('v2/private/tpsl/switch-mode', params);
|
||||
}
|
||||
|
||||
setMarginType(params: {
|
||||
symbol: string;
|
||||
is_isolated: boolean;
|
||||
buy_leverage: number;
|
||||
sell_leverage: number;
|
||||
}): GenericAPIResponse {
|
||||
return this.requestWrapper.post('v2/private/position/switch-isolated', params);
|
||||
}
|
||||
|
||||
/**
|
||||
* Risk Limit
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user