├── .github └── workflows │ ├── golangci-lint.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── account_asset.go ├── client.go ├── client_rsa_test.go ├── client_service.go ├── client_test.go ├── client_web_socket.go ├── client_web_socket_service.go ├── copy_trading.go ├── derivative_common.go ├── derivative_common_test.go ├── derivative_contract.go ├── derivative_unified_margin.go ├── enum.go ├── enum_derivative_common.go ├── enum_future_common.go ├── enum_spot_v1.go ├── future_common.go ├── future_inverse_future.go ├── future_inverse_future_test.go ├── future_inverse_perpetual.go ├── future_inverse_perpetual_test.go ├── future_usdt_perpetual.go ├── future_usdt_perpetual_test.go ├── go.mod ├── go.sum ├── integrationtest-ws ├── README.md ├── spot-v1 │ ├── Makefile │ ├── private_test.go │ ├── public_v1_test.go │ ├── public_v2_test.go │ └── testdata │ │ ├── private-outbound-account-info.json │ │ ├── public-v1-trade.json │ │ └── public-v2-trade.json ├── testhelper │ └── helper.go └── v5 │ ├── Makefile │ ├── private_test.go │ ├── public_test.go │ └── testdata │ ├── private-v5-execution.json │ ├── private-v5-position.json │ ├── private-v5-wallet.json │ ├── public-v5-kline.json │ ├── public-v5-orderbook.json │ ├── public-v5-ticker-inverse.json │ ├── public-v5-ticker-option.json │ └── public-v5-ticker-spot.json ├── integrationtest ├── README.md ├── derivative-contract │ ├── Makefile │ ├── derivative_contract_test.go │ └── testdata │ │ ├── derivatives-public-index-price-kline.json │ │ ├── derivatives-public-instruments-info-for-option.json │ │ ├── derivatives-public-instruments-info.json │ │ ├── derivatives-public-kline.json │ │ ├── derivatives-public-mark-price-kline.json │ │ ├── derivatives-public-order-book-l2.json │ │ ├── derivatives-public-tickers-for-option.json │ │ └── derivatives-public-tickers.json ├── derivative-unified-margin │ ├── Makefile │ ├── derivative_unified_margin_test.go │ └── testdata │ │ ├── derivatives-public-index-price-kline.json │ │ ├── derivatives-public-instruments-info-for-option.json │ │ ├── derivatives-public-instruments-info.json │ │ ├── derivatives-public-kline.json │ │ ├── derivatives-public-mark-price-kline.json │ │ ├── derivatives-public-order-book-l2.json │ │ ├── derivatives-public-tickers-for-option.json │ │ └── derivatives-public-tickers.json ├── future-inverse-future │ ├── Makefile │ ├── future_inverse_future_test.go │ └── testdata │ │ ├── futures-private-order-cancel-all.json │ │ ├── futures-private-order-cancel.json │ │ ├── futures-private-order-create.json │ │ ├── futures-private-order-list.json │ │ ├── futures-private-order.json │ │ ├── futures-private-position-leverage-save.json │ │ ├── futures-private-position-list.json │ │ ├── futures-private-position-trading-stop.json │ │ ├── futures-private-stop-order-cancel-all.json │ │ ├── futures-private-stop-order-cancel.json │ │ ├── futures-private-stop-order-create.json │ │ ├── futures-private-stop-order-list.json │ │ ├── futures-private-stop-order.json │ │ ├── v2-private-api-key-info.json │ │ ├── v2-private-wallet-balance.json │ │ ├── v2-public-account-ratio.json │ │ ├── v2-public-big-deal.json │ │ ├── v2-public-index-price-kline.json │ │ ├── v2-public-kline-list.json │ │ ├── v2-public-mark-price-kline.json │ │ ├── v2-public-open-interest.json │ │ ├── v2-public-order-book-l2.json │ │ ├── v2-public-symbols.json │ │ ├── v2-public-tickers.json │ │ └── v2-public-trading-records.json ├── future-inverse-perpetual │ ├── Makefile │ ├── future_inverse_perpetual_test.go │ └── testdata │ │ ├── v2-private-api-key-info.json │ │ ├── v2-private-order-cancel-all.json │ │ ├── v2-private-order-cancel.json │ │ ├── v2-private-order-create.json │ │ ├── v2-private-order-list.json │ │ ├── v2-private-order.json │ │ ├── v2-private-position-leverage-save.json │ │ ├── v2-private-position-list.json │ │ ├── v2-private-position-lists.json │ │ ├── v2-private-position-trading-stop.json │ │ ├── v2-private-stop-order-cancel-all.json │ │ ├── v2-private-stop-order-cancel.json │ │ ├── v2-private-stop-order-create.json │ │ ├── v2-private-stop-order-list.json │ │ ├── v2-private-stop-order.json │ │ ├── v2-private-wallet-balance.json │ │ ├── v2-public-account-ratio.json │ │ ├── v2-public-big-deal.json │ │ ├── v2-public-index-price-kline.json │ │ ├── v2-public-kline-list.json │ │ ├── v2-public-mark-price-kline.json │ │ ├── v2-public-open-interest.json │ │ ├── v2-public-order-book-l2.json │ │ ├── v2-public-premium-index-kline.json │ │ ├── v2-public-symbols.json │ │ ├── v2-public-tickers.json │ │ └── v2-public-trading-records.json ├── future-usdt-perpetual │ ├── Makefile │ ├── future_usdt_perpetual_test.go │ └── testdata │ │ ├── private-linear-cancel-all-order.json │ │ ├── private-linear-order-cancel.json │ │ ├── private-linear-order-create.json │ │ ├── private-linear-order-list.json │ │ ├── private-linear-order-replace.json │ │ ├── private-linear-order-search.json │ │ ├── private-linear-position-list.json │ │ ├── private-linear-position-lists.json │ │ ├── private-linear-position-set-leverave.json │ │ ├── private-linear-stop-order-cancel-all.json │ │ ├── private-linear-stop-order-cancel.json │ │ ├── private-linear-stop-order-create.json │ │ ├── private-linear-stop-order-list.json │ │ ├── private-linear-stop-order-search.json │ │ ├── private-linear-trade-execution-list.json │ │ ├── public-linear-kline.json │ │ ├── v2-private-api-key-info.json │ │ ├── v2-private-wallet-balance.json │ │ ├── v2-public-account-ratio.json │ │ ├── v2-public-big-deal.json │ │ ├── v2-public-open-interest.json │ │ ├── v2-public-order-book-l2.json │ │ ├── v2-public-symbols.json │ │ └── v2-public-tickers.json ├── spot-v1 │ ├── Makefile │ ├── spot_v1_test.go │ └── testdata │ │ ├── spot-quote-v1-depth-merged.json │ │ ├── spot-quote-v1-depth.json │ │ ├── spot-quote-v1-kline.json │ │ ├── spot-quote-v1-ticker-24hr.json │ │ ├── spot-quote-v1-ticker-book-ticker.json │ │ ├── spot-quote-v1-ticker-price.json │ │ ├── spot-quote-v1-trades.json │ │ ├── spot-v1-delete-order-fast.json │ │ ├── spot-v1-delete-order.json │ │ ├── spot-v1-get-order.json │ │ ├── spot-v1-get-wallet-balance.json │ │ ├── spot-v1-open-orders.json │ │ ├── spot-v1-order-batch-cancel-by-ids.json │ │ ├── spot-v1-order-batch-cancel.json │ │ ├── spot-v1-order-batch-fast-cancel.json │ │ ├── spot-v1-post-order.json │ │ └── spot-v1-symbols.json ├── testhelper │ └── helper.go └── v5 │ ├── account │ ├── Makefile │ ├── account_test.go │ └── testdata │ │ ├── v5-account-get-account-info.json │ │ ├── v5-account-get-collateral-info.json │ │ ├── v5-account-get-transaction-log.json │ │ ├── v5-account-get-wallet-balance.json │ │ ├── v5-account-set-collateral-coin-batch.json │ │ └── v5-account-set-collateral-coin.json │ ├── asset │ ├── Makefile │ ├── asset_test.go │ └── testdata │ │ ├── v5-asset-create-internal-transfer.json │ │ ├── v5-asset-get-all-coins-balance.json │ │ ├── v5-asset-get-deposit-records.json │ │ ├── v5-asset-get-internal-deposit-records.json │ │ ├── v5-asset-get-internal-transfer-records.json │ │ ├── v5-asset-get-sub-deposit-records.json │ │ └── v5-asset-get-withdrawal-records.json │ ├── execution │ ├── Makefile │ ├── execution_test.go │ └── testdata │ │ └── v5-execution-get-execution-list.json │ ├── market │ ├── Makefile │ ├── market_test.go │ └── testdata │ │ ├── v5-market-get-funding-rate-history.json │ │ ├── v5-market-get-historical-volatility.json │ │ ├── v5-market-get-index-price-kline.json │ │ ├── v5-market-get-instruments-info-inverse.json │ │ ├── v5-market-get-instruments-info-option.json │ │ ├── v5-market-get-instruments-info-spot.json │ │ ├── v5-market-get-insurance.json │ │ ├── v5-market-get-kline.json │ │ ├── v5-market-get-mark-price-kline.json │ │ ├── v5-market-get-open-interest.json │ │ ├── v5-market-get-orderbook.json │ │ ├── v5-market-get-premium-index-price-kline.json │ │ ├── v5-market-get-public-trading-history.json │ │ ├── v5-market-get-risk-limit.json │ │ ├── v5-market-get-tickers-inverse.json │ │ ├── v5-market-get-tickers-option.json │ │ └── v5-market-get-tickers-spot.json │ ├── order │ ├── Makefile │ ├── order_test.go │ └── testdata │ │ ├── v5-amend-order.json │ │ ├── v5-cancel-all-orders.json │ │ ├── v5-cancel-order.json │ │ ├── v5-create-order.json │ │ ├── v5-get-history-orders.json │ │ └── v5-get-open-orders.json │ ├── position │ ├── Makefile │ ├── position_test.go │ └── testdata │ │ ├── v5-position-get-closed-pnl.json │ │ ├── v5-position-get-position-info.json │ │ ├── v5-position-set-leverage.json │ │ ├── v5-position-set-risk-limit.json │ │ ├── v5-position-set-tpsl-mode.json │ │ ├── v5-position-set-trading-stop.json │ │ ├── v5-position-switch-cross_isolated-margin_mode.json │ │ └── v5-position-switch-position-mode.json │ └── user │ ├── Makefile │ ├── testdata │ └── v5-user-get-api-key.json │ └── user_test.go ├── logger.go ├── response.go ├── rsa_helper.go ├── spot_v1.go ├── spot_v1_test.go ├── spot_v3.go ├── testclient.go ├── testclient_websocket.go ├── testhelper ├── helper.go ├── server.go ├── server_test.go ├── server_websocket.go └── server_websocket_test.go ├── time_service.go ├── time_service_test.go ├── usdc_contract_option.go ├── usdc_contract_perpetual.go ├── v5_account_service.go ├── v5_account_service_test.go ├── v5_asset_service.go ├── v5_asset_service_test.go ├── v5_client_service.go ├── v5_client_web_socket_service.go ├── v5_enum.go ├── v5_execution_service.go ├── v5_execution_service_test.go ├── v5_market_service.go ├── v5_market_service_test.go ├── v5_order_service.go ├── v5_order_service_test.go ├── v5_position_service.go ├── v5_position_service_test.go ├── v5_spot_leverage_token_service.go ├── v5_spot_margin_trade_service.go ├── v5_user_service.go ├── v5_user_service_test.go ├── v5_ws_private.go ├── v5_ws_private_execution.go ├── v5_ws_private_order.go ├── v5_ws_private_order_test.go ├── v5_ws_private_position.go ├── v5_ws_private_position_test.go ├── v5_ws_private_wallet.go ├── v5_ws_private_wallet_test.go ├── v5_ws_public.go ├── v5_ws_public_allliquidation.go ├── v5_ws_public_allliquidation_test.go ├── v5_ws_public_kline.go ├── v5_ws_public_kline_test.go ├── v5_ws_public_liquidation.go ├── v5_ws_public_liquidation_test.go ├── v5_ws_public_orderbook.go ├── v5_ws_public_orderbook_test.go ├── v5_ws_public_ticker.go ├── v5_ws_public_ticker_test.go ├── v5_ws_public_trade.go ├── v5_ws_public_trade_test.go ├── v5_ws_trade.go ├── v5_ws_trade_order.go ├── ws_error.go ├── ws_spot_v1.go ├── ws_spot_v1_private.go ├── ws_spot_v1_private_test.go ├── ws_spot_v1_public_v1.go ├── ws_spot_v1_public_v1_test.go ├── ws_spot_v1_public_v2.go └── ws_spot_v1_public_v2_test.go /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .sandbox 2 | vendor/ 3 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/README.md -------------------------------------------------------------------------------- /account_asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/account_asset.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/client.go -------------------------------------------------------------------------------- /client_rsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/client_rsa_test.go -------------------------------------------------------------------------------- /client_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/client_service.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/client_test.go -------------------------------------------------------------------------------- /client_web_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/client_web_socket.go -------------------------------------------------------------------------------- /client_web_socket_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/client_web_socket_service.go -------------------------------------------------------------------------------- /copy_trading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/copy_trading.go -------------------------------------------------------------------------------- /derivative_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/derivative_common.go -------------------------------------------------------------------------------- /derivative_common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/derivative_common_test.go -------------------------------------------------------------------------------- /derivative_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/derivative_contract.go -------------------------------------------------------------------------------- /derivative_unified_margin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/derivative_unified_margin.go -------------------------------------------------------------------------------- /enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/enum.go -------------------------------------------------------------------------------- /enum_derivative_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/enum_derivative_common.go -------------------------------------------------------------------------------- /enum_future_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/enum_future_common.go -------------------------------------------------------------------------------- /enum_spot_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/enum_spot_v1.go -------------------------------------------------------------------------------- /future_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/future_common.go -------------------------------------------------------------------------------- /future_inverse_future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/future_inverse_future.go -------------------------------------------------------------------------------- /future_inverse_future_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/future_inverse_future_test.go -------------------------------------------------------------------------------- /future_inverse_perpetual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/future_inverse_perpetual.go -------------------------------------------------------------------------------- /future_inverse_perpetual_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/future_inverse_perpetual_test.go -------------------------------------------------------------------------------- /future_usdt_perpetual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/future_usdt_perpetual.go -------------------------------------------------------------------------------- /future_usdt_perpetual_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/future_usdt_perpetual_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/go.sum -------------------------------------------------------------------------------- /integrationtest-ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/README.md -------------------------------------------------------------------------------- /integrationtest-ws/spot-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/spot-v1/Makefile -------------------------------------------------------------------------------- /integrationtest-ws/spot-v1/private_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/spot-v1/private_test.go -------------------------------------------------------------------------------- /integrationtest-ws/spot-v1/public_v1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/spot-v1/public_v1_test.go -------------------------------------------------------------------------------- /integrationtest-ws/spot-v1/public_v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/spot-v1/public_v2_test.go -------------------------------------------------------------------------------- /integrationtest-ws/spot-v1/testdata/private-outbound-account-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/spot-v1/testdata/private-outbound-account-info.json -------------------------------------------------------------------------------- /integrationtest-ws/spot-v1/testdata/public-v1-trade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/spot-v1/testdata/public-v1-trade.json -------------------------------------------------------------------------------- /integrationtest-ws/spot-v1/testdata/public-v2-trade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/spot-v1/testdata/public-v2-trade.json -------------------------------------------------------------------------------- /integrationtest-ws/testhelper/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/testhelper/helper.go -------------------------------------------------------------------------------- /integrationtest-ws/v5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/Makefile -------------------------------------------------------------------------------- /integrationtest-ws/v5/private_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/private_test.go -------------------------------------------------------------------------------- /integrationtest-ws/v5/public_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/public_test.go -------------------------------------------------------------------------------- /integrationtest-ws/v5/testdata/private-v5-execution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/testdata/private-v5-execution.json -------------------------------------------------------------------------------- /integrationtest-ws/v5/testdata/private-v5-position.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/testdata/private-v5-position.json -------------------------------------------------------------------------------- /integrationtest-ws/v5/testdata/private-v5-wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/testdata/private-v5-wallet.json -------------------------------------------------------------------------------- /integrationtest-ws/v5/testdata/public-v5-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/testdata/public-v5-kline.json -------------------------------------------------------------------------------- /integrationtest-ws/v5/testdata/public-v5-orderbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/testdata/public-v5-orderbook.json -------------------------------------------------------------------------------- /integrationtest-ws/v5/testdata/public-v5-ticker-inverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/testdata/public-v5-ticker-inverse.json -------------------------------------------------------------------------------- /integrationtest-ws/v5/testdata/public-v5-ticker-option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/testdata/public-v5-ticker-option.json -------------------------------------------------------------------------------- /integrationtest-ws/v5/testdata/public-v5-ticker-spot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest-ws/v5/testdata/public-v5-ticker-spot.json -------------------------------------------------------------------------------- /integrationtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/README.md -------------------------------------------------------------------------------- /integrationtest/derivative-contract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/Makefile -------------------------------------------------------------------------------- /integrationtest/derivative-contract/derivative_contract_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/derivative_contract_test.go -------------------------------------------------------------------------------- /integrationtest/derivative-contract/testdata/derivatives-public-index-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/testdata/derivatives-public-index-price-kline.json -------------------------------------------------------------------------------- /integrationtest/derivative-contract/testdata/derivatives-public-instruments-info-for-option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/testdata/derivatives-public-instruments-info-for-option.json -------------------------------------------------------------------------------- /integrationtest/derivative-contract/testdata/derivatives-public-instruments-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/testdata/derivatives-public-instruments-info.json -------------------------------------------------------------------------------- /integrationtest/derivative-contract/testdata/derivatives-public-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/testdata/derivatives-public-kline.json -------------------------------------------------------------------------------- /integrationtest/derivative-contract/testdata/derivatives-public-mark-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/testdata/derivatives-public-mark-price-kline.json -------------------------------------------------------------------------------- /integrationtest/derivative-contract/testdata/derivatives-public-order-book-l2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/testdata/derivatives-public-order-book-l2.json -------------------------------------------------------------------------------- /integrationtest/derivative-contract/testdata/derivatives-public-tickers-for-option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/testdata/derivatives-public-tickers-for-option.json -------------------------------------------------------------------------------- /integrationtest/derivative-contract/testdata/derivatives-public-tickers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-contract/testdata/derivatives-public-tickers.json -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/Makefile -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/derivative_unified_margin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/derivative_unified_margin_test.go -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/testdata/derivatives-public-index-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/testdata/derivatives-public-index-price-kline.json -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/testdata/derivatives-public-instruments-info-for-option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/testdata/derivatives-public-instruments-info-for-option.json -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/testdata/derivatives-public-instruments-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/testdata/derivatives-public-instruments-info.json -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/testdata/derivatives-public-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/testdata/derivatives-public-kline.json -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/testdata/derivatives-public-mark-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/testdata/derivatives-public-mark-price-kline.json -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/testdata/derivatives-public-order-book-l2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/testdata/derivatives-public-order-book-l2.json -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/testdata/derivatives-public-tickers-for-option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/testdata/derivatives-public-tickers-for-option.json -------------------------------------------------------------------------------- /integrationtest/derivative-unified-margin/testdata/derivatives-public-tickers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/derivative-unified-margin/testdata/derivatives-public-tickers.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/Makefile -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/future_inverse_future_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/future_inverse_future_test.go -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-order-cancel-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-order-cancel-all.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-order-cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-order-cancel.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-order-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-order-create.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-order-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-order-list.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-order.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-position-leverage-save.json: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-position-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-position-list.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-position-trading-stop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-position-trading-stop.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-stop-order-cancel-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-stop-order-cancel-all.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-stop-order-cancel.json: -------------------------------------------------------------------------------- 1 | { 2 | "stop_order_id": "7b9b5a49-8aea-4684-a1ac-4df472dc789c" 3 | } -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-stop-order-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-stop-order-create.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-stop-order-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-stop-order-list.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/futures-private-stop-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/futures-private-stop-order.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-private-api-key-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-private-api-key-info.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-private-wallet-balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-private-wallet-balance.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-account-ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-account-ratio.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-big-deal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-big-deal.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-index-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-index-price-kline.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-kline-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-kline-list.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-mark-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-mark-price-kline.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-open-interest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-open-interest.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-order-book-l2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-order-book-l2.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-symbols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-symbols.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-tickers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-tickers.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-future/testdata/v2-public-trading-records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-future/testdata/v2-public-trading-records.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/Makefile -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/future_inverse_perpetual_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/future_inverse_perpetual_test.go -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-api-key-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-api-key-info.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-order-cancel-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-order-cancel-all.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-order-cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-order-cancel.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-order-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-order-create.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-order-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-order-list.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-order.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-position-leverage-save.json: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-position-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-position-list.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-position-lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-position-lists.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-position-trading-stop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-position-trading-stop.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-stop-order-cancel-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-stop-order-cancel-all.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-stop-order-cancel.json: -------------------------------------------------------------------------------- 1 | { 2 | "stop_order_id": "f13236dd-4988-41e8-8558-011d875d4282" 3 | } -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-stop-order-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-stop-order-create.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-stop-order-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-stop-order-list.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-stop-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-stop-order.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-private-wallet-balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-private-wallet-balance.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-account-ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-account-ratio.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-big-deal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-big-deal.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-index-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-index-price-kline.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-kline-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-kline-list.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-mark-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-mark-price-kline.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-open-interest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-open-interest.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-order-book-l2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-order-book-l2.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-premium-index-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-premium-index-kline.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-symbols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-symbols.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-tickers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-tickers.json -------------------------------------------------------------------------------- /integrationtest/future-inverse-perpetual/testdata/v2-public-trading-records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-inverse-perpetual/testdata/v2-public-trading-records.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/Makefile -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/future_usdt_perpetual_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/future_usdt_perpetual_test.go -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-cancel-all-order.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-order-cancel.json: -------------------------------------------------------------------------------- 1 | { 2 | "order_id": "0f6c5ab1-7605-4925-bb66-a1b3f37c4c05" 3 | } -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-order-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-order-create.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-order-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-order-list.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-order-replace.json: -------------------------------------------------------------------------------- 1 | { 2 | "order_id": "b777573b-026e-48ee-b9ac-28c81e829ae8" 3 | } -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-order-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-order-search.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-position-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-position-list.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-position-lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-position-lists.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-position-set-leverave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-position-set-leverave.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-stop-order-cancel-all.json: -------------------------------------------------------------------------------- 1 | [ 2 | "ab39efc4-e15f-4538-92d5-2e02a14f4845" 3 | ] -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-stop-order-cancel.json: -------------------------------------------------------------------------------- 1 | { 2 | "stop_order_id": "1cc84e40-8b72-4191-935a-cc3feafbf02e" 3 | } -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-stop-order-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-stop-order-create.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-stop-order-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-stop-order-list.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-stop-order-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-stop-order-search.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/private-linear-trade-execution-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/private-linear-trade-execution-list.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/public-linear-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/public-linear-kline.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/v2-private-api-key-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/v2-private-api-key-info.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/v2-private-wallet-balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/v2-private-wallet-balance.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/v2-public-account-ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/v2-public-account-ratio.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/v2-public-big-deal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/v2-public-big-deal.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/v2-public-open-interest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/v2-public-open-interest.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/v2-public-order-book-l2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/v2-public-order-book-l2.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/v2-public-symbols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/v2-public-symbols.json -------------------------------------------------------------------------------- /integrationtest/future-usdt-perpetual/testdata/v2-public-tickers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/future-usdt-perpetual/testdata/v2-public-tickers.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/Makefile -------------------------------------------------------------------------------- /integrationtest/spot-v1/spot_v1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/spot_v1_test.go -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-quote-v1-depth-merged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-quote-v1-depth-merged.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-quote-v1-depth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-quote-v1-depth.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-quote-v1-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-quote-v1-kline.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-quote-v1-ticker-24hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-quote-v1-ticker-24hr.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-quote-v1-ticker-book-ticker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-quote-v1-ticker-book-ticker.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-quote-v1-ticker-price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-quote-v1-ticker-price.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-quote-v1-trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-quote-v1-trades.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-delete-order-fast.json: -------------------------------------------------------------------------------- 1 | { 2 | "isCancelled": true 3 | } -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-delete-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-v1-delete-order.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-get-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-v1-get-order.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-get-wallet-balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-v1-get-wallet-balance.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-open-orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-v1-open-orders.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-order-batch-cancel-by-ids.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-order-batch-cancel.json: -------------------------------------------------------------------------------- 1 | { 2 | "success": true 3 | } -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-order-batch-fast-cancel.json: -------------------------------------------------------------------------------- 1 | { 2 | "success": true 3 | } -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-post-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-v1-post-order.json -------------------------------------------------------------------------------- /integrationtest/spot-v1/testdata/spot-v1-symbols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/spot-v1/testdata/spot-v1-symbols.json -------------------------------------------------------------------------------- /integrationtest/testhelper/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/testhelper/helper.go -------------------------------------------------------------------------------- /integrationtest/v5/account/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/account/Makefile -------------------------------------------------------------------------------- /integrationtest/v5/account/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/account/account_test.go -------------------------------------------------------------------------------- /integrationtest/v5/account/testdata/v5-account-get-account-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/account/testdata/v5-account-get-account-info.json -------------------------------------------------------------------------------- /integrationtest/v5/account/testdata/v5-account-get-collateral-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/account/testdata/v5-account-get-collateral-info.json -------------------------------------------------------------------------------- /integrationtest/v5/account/testdata/v5-account-get-transaction-log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/account/testdata/v5-account-get-transaction-log.json -------------------------------------------------------------------------------- /integrationtest/v5/account/testdata/v5-account-get-wallet-balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/account/testdata/v5-account-get-wallet-balance.json -------------------------------------------------------------------------------- /integrationtest/v5/account/testdata/v5-account-set-collateral-coin-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/account/testdata/v5-account-set-collateral-coin-batch.json -------------------------------------------------------------------------------- /integrationtest/v5/account/testdata/v5-account-set-collateral-coin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integrationtest/v5/asset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/asset/Makefile -------------------------------------------------------------------------------- /integrationtest/v5/asset/asset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/asset/asset_test.go -------------------------------------------------------------------------------- /integrationtest/v5/asset/testdata/v5-asset-create-internal-transfer.json: -------------------------------------------------------------------------------- 1 | { 2 | "transferId": "42c0cfb0-6bca-c242-bc76-4e6df6cbab16" 3 | } -------------------------------------------------------------------------------- /integrationtest/v5/asset/testdata/v5-asset-get-all-coins-balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/asset/testdata/v5-asset-get-all-coins-balance.json -------------------------------------------------------------------------------- /integrationtest/v5/asset/testdata/v5-asset-get-deposit-records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/asset/testdata/v5-asset-get-deposit-records.json -------------------------------------------------------------------------------- /integrationtest/v5/asset/testdata/v5-asset-get-internal-deposit-records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/asset/testdata/v5-asset-get-internal-deposit-records.json -------------------------------------------------------------------------------- /integrationtest/v5/asset/testdata/v5-asset-get-internal-transfer-records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/asset/testdata/v5-asset-get-internal-transfer-records.json -------------------------------------------------------------------------------- /integrationtest/v5/asset/testdata/v5-asset-get-sub-deposit-records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/asset/testdata/v5-asset-get-sub-deposit-records.json -------------------------------------------------------------------------------- /integrationtest/v5/asset/testdata/v5-asset-get-withdrawal-records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/asset/testdata/v5-asset-get-withdrawal-records.json -------------------------------------------------------------------------------- /integrationtest/v5/execution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/execution/Makefile -------------------------------------------------------------------------------- /integrationtest/v5/execution/execution_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/execution/execution_test.go -------------------------------------------------------------------------------- /integrationtest/v5/execution/testdata/v5-execution-get-execution-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/execution/testdata/v5-execution-get-execution-list.json -------------------------------------------------------------------------------- /integrationtest/v5/market/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/Makefile -------------------------------------------------------------------------------- /integrationtest/v5/market/market_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/market_test.go -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-funding-rate-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-funding-rate-history.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-historical-volatility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-historical-volatility.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-index-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-index-price-kline.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-instruments-info-inverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-instruments-info-inverse.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-instruments-info-option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-instruments-info-option.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-instruments-info-spot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-instruments-info-spot.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-insurance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-insurance.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-kline.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-mark-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-mark-price-kline.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-open-interest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-open-interest.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-orderbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-orderbook.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-premium-index-price-kline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-premium-index-price-kline.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-public-trading-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-public-trading-history.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-risk-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-risk-limit.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-tickers-inverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-tickers-inverse.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-tickers-option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-tickers-option.json -------------------------------------------------------------------------------- /integrationtest/v5/market/testdata/v5-market-get-tickers-spot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/market/testdata/v5-market-get-tickers-spot.json -------------------------------------------------------------------------------- /integrationtest/v5/order/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/order/Makefile -------------------------------------------------------------------------------- /integrationtest/v5/order/order_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/order/order_test.go -------------------------------------------------------------------------------- /integrationtest/v5/order/testdata/v5-amend-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/order/testdata/v5-amend-order.json -------------------------------------------------------------------------------- /integrationtest/v5/order/testdata/v5-cancel-all-orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/order/testdata/v5-cancel-all-orders.json -------------------------------------------------------------------------------- /integrationtest/v5/order/testdata/v5-cancel-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/order/testdata/v5-cancel-order.json -------------------------------------------------------------------------------- /integrationtest/v5/order/testdata/v5-create-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/order/testdata/v5-create-order.json -------------------------------------------------------------------------------- /integrationtest/v5/order/testdata/v5-get-history-orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/order/testdata/v5-get-history-orders.json -------------------------------------------------------------------------------- /integrationtest/v5/order/testdata/v5-get-open-orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/order/testdata/v5-get-open-orders.json -------------------------------------------------------------------------------- /integrationtest/v5/position/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/position/Makefile -------------------------------------------------------------------------------- /integrationtest/v5/position/position_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/position/position_test.go -------------------------------------------------------------------------------- /integrationtest/v5/position/testdata/v5-position-get-closed-pnl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/position/testdata/v5-position-get-closed-pnl.json -------------------------------------------------------------------------------- /integrationtest/v5/position/testdata/v5-position-get-position-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/position/testdata/v5-position-get-position-info.json -------------------------------------------------------------------------------- /integrationtest/v5/position/testdata/v5-position-set-leverage.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integrationtest/v5/position/testdata/v5-position-set-risk-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/position/testdata/v5-position-set-risk-limit.json -------------------------------------------------------------------------------- /integrationtest/v5/position/testdata/v5-position-set-tpsl-mode.json: -------------------------------------------------------------------------------- 1 | { 2 | "tpSlMode": "Full" 3 | } -------------------------------------------------------------------------------- /integrationtest/v5/position/testdata/v5-position-set-trading-stop.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integrationtest/v5/position/testdata/v5-position-switch-cross_isolated-margin_mode.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integrationtest/v5/position/testdata/v5-position-switch-position-mode.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integrationtest/v5/user/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/user/Makefile -------------------------------------------------------------------------------- /integrationtest/v5/user/testdata/v5-user-get-api-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/user/testdata/v5-user-get-api-key.json -------------------------------------------------------------------------------- /integrationtest/v5/user/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/integrationtest/v5/user/user_test.go -------------------------------------------------------------------------------- /logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/logger.go -------------------------------------------------------------------------------- /response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/response.go -------------------------------------------------------------------------------- /rsa_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/rsa_helper.go -------------------------------------------------------------------------------- /spot_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/spot_v1.go -------------------------------------------------------------------------------- /spot_v1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/spot_v1_test.go -------------------------------------------------------------------------------- /spot_v3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/spot_v3.go -------------------------------------------------------------------------------- /testclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/testclient.go -------------------------------------------------------------------------------- /testclient_websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/testclient_websocket.go -------------------------------------------------------------------------------- /testhelper/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/testhelper/helper.go -------------------------------------------------------------------------------- /testhelper/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/testhelper/server.go -------------------------------------------------------------------------------- /testhelper/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/testhelper/server_test.go -------------------------------------------------------------------------------- /testhelper/server_websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/testhelper/server_websocket.go -------------------------------------------------------------------------------- /testhelper/server_websocket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/testhelper/server_websocket_test.go -------------------------------------------------------------------------------- /time_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/time_service.go -------------------------------------------------------------------------------- /time_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/time_service_test.go -------------------------------------------------------------------------------- /usdc_contract_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/usdc_contract_option.go -------------------------------------------------------------------------------- /usdc_contract_perpetual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/usdc_contract_perpetual.go -------------------------------------------------------------------------------- /v5_account_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_account_service.go -------------------------------------------------------------------------------- /v5_account_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_account_service_test.go -------------------------------------------------------------------------------- /v5_asset_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_asset_service.go -------------------------------------------------------------------------------- /v5_asset_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_asset_service_test.go -------------------------------------------------------------------------------- /v5_client_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_client_service.go -------------------------------------------------------------------------------- /v5_client_web_socket_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_client_web_socket_service.go -------------------------------------------------------------------------------- /v5_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_enum.go -------------------------------------------------------------------------------- /v5_execution_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_execution_service.go -------------------------------------------------------------------------------- /v5_execution_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_execution_service_test.go -------------------------------------------------------------------------------- /v5_market_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_market_service.go -------------------------------------------------------------------------------- /v5_market_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_market_service_test.go -------------------------------------------------------------------------------- /v5_order_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_order_service.go -------------------------------------------------------------------------------- /v5_order_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_order_service_test.go -------------------------------------------------------------------------------- /v5_position_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_position_service.go -------------------------------------------------------------------------------- /v5_position_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_position_service_test.go -------------------------------------------------------------------------------- /v5_spot_leverage_token_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_spot_leverage_token_service.go -------------------------------------------------------------------------------- /v5_spot_margin_trade_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_spot_margin_trade_service.go -------------------------------------------------------------------------------- /v5_user_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_user_service.go -------------------------------------------------------------------------------- /v5_user_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_user_service_test.go -------------------------------------------------------------------------------- /v5_ws_private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_private.go -------------------------------------------------------------------------------- /v5_ws_private_execution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_private_execution.go -------------------------------------------------------------------------------- /v5_ws_private_order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_private_order.go -------------------------------------------------------------------------------- /v5_ws_private_order_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_private_order_test.go -------------------------------------------------------------------------------- /v5_ws_private_position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_private_position.go -------------------------------------------------------------------------------- /v5_ws_private_position_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_private_position_test.go -------------------------------------------------------------------------------- /v5_ws_private_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_private_wallet.go -------------------------------------------------------------------------------- /v5_ws_private_wallet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_private_wallet_test.go -------------------------------------------------------------------------------- /v5_ws_public.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public.go -------------------------------------------------------------------------------- /v5_ws_public_allliquidation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_allliquidation.go -------------------------------------------------------------------------------- /v5_ws_public_allliquidation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_allliquidation_test.go -------------------------------------------------------------------------------- /v5_ws_public_kline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_kline.go -------------------------------------------------------------------------------- /v5_ws_public_kline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_kline_test.go -------------------------------------------------------------------------------- /v5_ws_public_liquidation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_liquidation.go -------------------------------------------------------------------------------- /v5_ws_public_liquidation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_liquidation_test.go -------------------------------------------------------------------------------- /v5_ws_public_orderbook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_orderbook.go -------------------------------------------------------------------------------- /v5_ws_public_orderbook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_orderbook_test.go -------------------------------------------------------------------------------- /v5_ws_public_ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_ticker.go -------------------------------------------------------------------------------- /v5_ws_public_ticker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_ticker_test.go -------------------------------------------------------------------------------- /v5_ws_public_trade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_trade.go -------------------------------------------------------------------------------- /v5_ws_public_trade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_public_trade_test.go -------------------------------------------------------------------------------- /v5_ws_trade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_trade.go -------------------------------------------------------------------------------- /v5_ws_trade_order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/v5_ws_trade_order.go -------------------------------------------------------------------------------- /ws_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/ws_error.go -------------------------------------------------------------------------------- /ws_spot_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/ws_spot_v1.go -------------------------------------------------------------------------------- /ws_spot_v1_private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/ws_spot_v1_private.go -------------------------------------------------------------------------------- /ws_spot_v1_private_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/ws_spot_v1_private_test.go -------------------------------------------------------------------------------- /ws_spot_v1_public_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/ws_spot_v1_public_v1.go -------------------------------------------------------------------------------- /ws_spot_v1_public_v1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/ws_spot_v1_public_v1_test.go -------------------------------------------------------------------------------- /ws_spot_v1_public_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/ws_spot_v1_public_v2.go -------------------------------------------------------------------------------- /ws_spot_v1_public_v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirokisan/bybit/HEAD/ws_spot_v1_public_v2_test.go --------------------------------------------------------------------------------