cleaning, fix and add spot post tests
This commit is contained in:
@@ -9,3 +9,34 @@ export const positionTpSlModeEnum = {
|
||||
/** Partial take profit/stop loss mode (multiple TP and SL orders can be placed, covering portions of the position) */
|
||||
Partial: 'Partial',
|
||||
} as const;
|
||||
|
||||
export const API_ERROR_CODE = {
|
||||
BALANCE_INSUFFICIENT_SPOT: -1131,
|
||||
ORDER_NOT_FOUND_OR_TOO_LATE_SPOT: -2013,
|
||||
/** This could mean bad request, incorrect value types or even incorrect/missing values */
|
||||
PARAMS_MISSING_OR_WRONG: 10001,
|
||||
ORDER_NOT_FOUND_OR_TOO_LATE: 20001,
|
||||
POSITION_STATUS_NOT_NORMAL: 30013,
|
||||
CANNOT_SET_TRADING_STOP_FOR_ZERO_POS: 30024,
|
||||
/** Seen when placing an order */
|
||||
INSUFFICIENT_BALANCE_FOR_ORDER_COST: 30031,
|
||||
POSITION_IDX_NOT_MATCH_POSITION_MODE: 30041,
|
||||
/** Seen if a conditional order is too large */
|
||||
INSUFFICIENT_BALANCE: 30042,
|
||||
/** E.g. trying to change position margin while on cross */
|
||||
POSITION_IS_CROSS_MARGIN: 30056,
|
||||
POSITION_MODE_NOT_MODIFIED: 30083,
|
||||
ISOLATED_NOT_MODIFIED: 30084,
|
||||
RISK_LIMIT_NOT_EXISTS: 30090,
|
||||
LEVERAGE_NOT_MODIFIED: 34036,
|
||||
SAME_SLTP_MODE: 37002,
|
||||
ORDER_NOT_FOUND_OR_TOO_LATE_LINEAR: 130010,
|
||||
ORDER_COST_NOT_AVAILABLE: 130021,
|
||||
CANNOT_SET_LINEAR_TRADING_STOP_FOR_ZERO_POS: 130024,
|
||||
ISOLATED_NOT_MODIFIED_LINEAR: 130056,
|
||||
POSITION_SIZE_IS_ZERO: 130057,
|
||||
AUTO_ADD_MARGIN_NOT_MODIFIED: 130060,
|
||||
INSUFFICIENT_BALANCE_FOR_ORDER_COST_LINEAR: 130080,
|
||||
SAME_SLTP_MODE_LINEAR: 130150,
|
||||
RISK_ID_NOT_MODIFIED: 134026,
|
||||
} as const;
|
||||
|
||||
@@ -7,5 +7,4 @@ export * from './logger';
|
||||
export * from './types/shared';
|
||||
export * from './types/spot';
|
||||
export * from './util/WsStore';
|
||||
export * from './util/enum';
|
||||
export * from './constants/enum';
|
||||
|
||||
@@ -9,6 +9,7 @@ import {
|
||||
} from './types/spot';
|
||||
import BaseRestClient from './util/BaseRestClient';
|
||||
import {
|
||||
agentSource,
|
||||
getRestBaseUrl,
|
||||
RestClientOptions,
|
||||
REST_CLIENT_TYPE_ENUM,
|
||||
@@ -121,7 +122,10 @@ export class SpotClient extends BaseRestClient {
|
||||
*/
|
||||
|
||||
submitOrder(params: NewSpotOrder): Promise<APIResponse<any>> {
|
||||
return this.postPrivate('/spot/v1/order', params);
|
||||
return this.postPrivate('/spot/v1/order', {
|
||||
...params,
|
||||
agentSource,
|
||||
});
|
||||
}
|
||||
|
||||
getOrder(params: SpotOrderQueryById): Promise<APIResponse<any>> {
|
||||
|
||||
@@ -7,6 +7,7 @@ import {
|
||||
serializeParams,
|
||||
RestClientType,
|
||||
REST_CLIENT_TYPE_ENUM,
|
||||
agentSource,
|
||||
} from './requestUtils';
|
||||
|
||||
// axios.interceptors.request.use((request) => {
|
||||
@@ -162,8 +163,13 @@ export default abstract class BaseRestClient {
|
||||
|
||||
const signResult = await this.prepareSignParams(params, isPublicApi);
|
||||
|
||||
if (method === 'GET') {
|
||||
if (method === 'GET' || this.isSpotClient()) {
|
||||
options.params = signResult.paramsWithSign;
|
||||
if (options.params?.agentSource) {
|
||||
options.data = {
|
||||
agentSource: agentSource,
|
||||
};
|
||||
}
|
||||
} else {
|
||||
options.data = signResult.paramsWithSign;
|
||||
}
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
export const API_ERROR_CODE = {
|
||||
PARAMS_MISSING_OR_WRONG: 10001,
|
||||
ORDER_NOT_FOUND_OR_TOO_LATE: 20001,
|
||||
POSITION_STATUS_NOT_NORMAL: 30013,
|
||||
CANNOT_SET_TRADING_STOP_FOR_ZERO_POS: 30024,
|
||||
/** Seen when placing an order */
|
||||
INSUFFICIENT_BALANCE_FOR_ORDER_COST: 30031,
|
||||
POSITION_IDX_NOT_MATCH_POSITION_MODE: 30041,
|
||||
/** Seen if a conditional order is too large */
|
||||
INSUFFICIENT_BALANCE: 30042,
|
||||
/** E.g. trying to change position margin while on cross */
|
||||
POSITION_IS_CROSS_MARGIN: 30056,
|
||||
POSITION_MODE_NOT_MODIFIED: 30083,
|
||||
ISOLATED_NOT_MODIFIED: 30084,
|
||||
RISK_LIMIT_NOT_EXISTS: 30090,
|
||||
LEVERAGE_NOT_MODIFIED: 34036,
|
||||
SAME_SLTP_MODE: 37002,
|
||||
ORDER_NOT_FOUND_OR_TOO_LATE_LINEAR: 130010,
|
||||
ORDER_COST_NOT_AVAILABLE: 130021,
|
||||
CANNOT_SET_LINEAR_TRADING_STOP_FOR_ZERO_POS: 130024,
|
||||
ISOLATED_NOT_MODIFIED_LINEAR: 130056,
|
||||
POSITION_SIZE_IS_ZERO: 130057,
|
||||
AUTO_ADD_MARGIN_NOT_MODIFIED: 130060,
|
||||
INSUFFICIENT_BALANCE_FOR_ORDER_COST_LINEAR: 130080,
|
||||
SAME_SLTP_MODE_LINEAR: 130150,
|
||||
RISK_ID_NOT_MODIFIED: 134026,
|
||||
} as const;
|
||||
@@ -85,6 +85,8 @@ export function isWsPong(response: any) {
|
||||
);
|
||||
}
|
||||
|
||||
export const agentSource = 'bybitapinode';
|
||||
|
||||
export const REST_CLIENT_TYPE_ENUM = {
|
||||
inverse: 'inverse',
|
||||
inverseFutures: 'inverseFutures',
|
||||
|
||||
Reference in New Issue
Block a user