Update ReplaceActiveOrder for InverseClient

This commit is contained in:
Pranay Pratyush
2022-01-14 13:25:20 +05:30
committed by GitHub
parent 422983fa5e
commit 995d6cd567

View File

@@ -129,8 +129,12 @@ export class InverseClient extends SharedEndpoints {
order_id?: string; order_id?: string;
order_link_id?: string; order_link_id?: string;
symbol: string; symbol: string;
p_r_qty?: string; p_r_qty?: number;
p_r_price?: string; p_r_price?: string;
take_profit?: number;
stop_loss?: number;
tp_trigger_by?:string;
sl_trigger_by?:string;
}): GenericAPIResponse { }): GenericAPIResponse {
return this.requestWrapper.post('v2/private/order/replace', params); return this.requestWrapper.post('v2/private/order/replace', params);
} }