Qubx 0.5.7__cp312-cp312-manylinux_2_39_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of Qubx might be problematic. Click here for more details.
- qubx/__init__.py +207 -0
- qubx/_nb_magic.py +100 -0
- qubx/backtester/__init__.py +5 -0
- qubx/backtester/account.py +145 -0
- qubx/backtester/broker.py +87 -0
- qubx/backtester/data.py +296 -0
- qubx/backtester/management.py +378 -0
- qubx/backtester/ome.py +296 -0
- qubx/backtester/optimization.py +201 -0
- qubx/backtester/simulated_data.py +558 -0
- qubx/backtester/simulator.py +362 -0
- qubx/backtester/utils.py +780 -0
- qubx/cli/__init__.py +0 -0
- qubx/cli/commands.py +67 -0
- qubx/connectors/ccxt/__init__.py +0 -0
- qubx/connectors/ccxt/account.py +495 -0
- qubx/connectors/ccxt/broker.py +132 -0
- qubx/connectors/ccxt/customizations.py +193 -0
- qubx/connectors/ccxt/data.py +612 -0
- qubx/connectors/ccxt/exceptions.py +17 -0
- qubx/connectors/ccxt/factory.py +93 -0
- qubx/connectors/ccxt/utils.py +307 -0
- qubx/core/__init__.py +0 -0
- qubx/core/account.py +251 -0
- qubx/core/basics.py +850 -0
- qubx/core/context.py +420 -0
- qubx/core/exceptions.py +38 -0
- qubx/core/helpers.py +480 -0
- qubx/core/interfaces.py +1150 -0
- qubx/core/loggers.py +514 -0
- qubx/core/lookups.py +475 -0
- qubx/core/metrics.py +1512 -0
- qubx/core/mixins/__init__.py +13 -0
- qubx/core/mixins/market.py +94 -0
- qubx/core/mixins/processing.py +428 -0
- qubx/core/mixins/subscription.py +203 -0
- qubx/core/mixins/trading.py +88 -0
- qubx/core/mixins/universe.py +270 -0
- qubx/core/series.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/core/series.pxd +125 -0
- qubx/core/series.pyi +118 -0
- qubx/core/series.pyx +988 -0
- qubx/core/utils.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/core/utils.pyi +6 -0
- qubx/core/utils.pyx +62 -0
- qubx/data/__init__.py +25 -0
- qubx/data/helpers.py +416 -0
- qubx/data/readers.py +1562 -0
- qubx/data/tardis.py +100 -0
- qubx/gathering/simplest.py +88 -0
- qubx/math/__init__.py +3 -0
- qubx/math/stats.py +129 -0
- qubx/pandaz/__init__.py +23 -0
- qubx/pandaz/ta.py +2757 -0
- qubx/pandaz/utils.py +638 -0
- qubx/resources/instruments/symbols-binance.cm.json +1 -0
- qubx/resources/instruments/symbols-binance.json +1 -0
- qubx/resources/instruments/symbols-binance.um.json +1 -0
- qubx/resources/instruments/symbols-bitfinex.f.json +1 -0
- qubx/resources/instruments/symbols-bitfinex.json +1 -0
- qubx/resources/instruments/symbols-kraken.f.json +1 -0
- qubx/resources/instruments/symbols-kraken.json +1 -0
- qubx/ta/__init__.py +0 -0
- qubx/ta/indicators.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/ta/indicators.pxd +149 -0
- qubx/ta/indicators.pyi +41 -0
- qubx/ta/indicators.pyx +787 -0
- qubx/trackers/__init__.py +3 -0
- qubx/trackers/abvanced.py +236 -0
- qubx/trackers/composite.py +146 -0
- qubx/trackers/rebalancers.py +129 -0
- qubx/trackers/riskctrl.py +641 -0
- qubx/trackers/sizers.py +235 -0
- qubx/utils/__init__.py +5 -0
- qubx/utils/_pyxreloader.py +281 -0
- qubx/utils/charting/lookinglass.py +1057 -0
- qubx/utils/charting/mpl_helpers.py +1183 -0
- qubx/utils/marketdata/binance.py +284 -0
- qubx/utils/marketdata/ccxt.py +90 -0
- qubx/utils/marketdata/dukas.py +130 -0
- qubx/utils/misc.py +541 -0
- qubx/utils/ntp.py +63 -0
- qubx/utils/numbers_utils.py +7 -0
- qubx/utils/orderbook.py +491 -0
- qubx/utils/plotting/__init__.py +0 -0
- qubx/utils/plotting/dashboard.py +150 -0
- qubx/utils/plotting/data.py +137 -0
- qubx/utils/plotting/interfaces.py +25 -0
- qubx/utils/plotting/renderers/__init__.py +0 -0
- qubx/utils/plotting/renderers/plotly.py +0 -0
- qubx/utils/runner/__init__.py +1 -0
- qubx/utils/runner/_jupyter_runner.pyt +60 -0
- qubx/utils/runner/accounts.py +88 -0
- qubx/utils/runner/configs.py +65 -0
- qubx/utils/runner/runner.py +470 -0
- qubx/utils/time.py +312 -0
- qubx-0.5.7.dist-info/METADATA +105 -0
- qubx-0.5.7.dist-info/RECORD +100 -0
- qubx-0.5.7.dist-info/WHEEL +4 -0
- qubx-0.5.7.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id": "btcusd_perp", "datasetId": "BTCUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "BTC", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-08-11T00:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 100, "underlyingIndex": "btcusd", "listing": "2020-08-10T07:00:00.000Z"}, {"id": "ethusd_perp", "datasetId": "ETHUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "ETH", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-08-18T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "ethusd", "listing": "2020-08-18T07:00:00.000Z"}, {"id": "bnbusd_perp", "datasetId": "BNBUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "BNB", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-08-21T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "bnbusd", "changes": [{"until": "2023-02-10T08:30:00.000Z", "priceIncrement": 0.001}], "listing": "2020-08-21T07:00:00.000Z"}, {"id": "ltcusd_perp", "datasetId": "LTCUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "LTC", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-09-08T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "ltcusd", "listing": "2020-09-07T07:00:00.000Z"}, {"id": "solusd_perp", "datasetId": "SOLUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "SOL", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-09-02T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "solusd", "listing": "2021-09-01T07:00:00.000Z", "changes": [{"until": "2024-10-14T07:00:00.000Z", "priceIncrement": 0.001}]}, {"id": "bchusd_perp", "datasetId": "BCHUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "BCH", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-09-08T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "bchusd", "listing": "2020-09-07T07:00:00.000Z"}, {"id": "xrpusd_perp", "datasetId": "XRPUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "XRP", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-09-09T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "xrpusd", "listing": "2020-09-09T07:00:00.000Z"}, {"id": "eosusd_perp", "datasetId": "EOSUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "EOS", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-09-07T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "eosusd", "listing": "2020-09-06T07:00:00.000Z"}, {"id": "avaxusd_perp", "datasetId": "AVAXUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "AVAX", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-11-24T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "avaxusd", "listing": "2021-11-23T07:00:00.000Z"}, {"id": "trxusd_perp", "datasetId": "TRXUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "TRX", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-09-07T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "trxusd", "listing": "2020-08-25T07:00:00.000Z"}, {"id": "etcusd_perp", "datasetId": "ETCUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "ETC", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-09-09T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "etcusd", "listing": "2020-09-09T07:00:00.000Z"}, {"id": "dotusd_perp", "datasetId": "DOTUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "DOT", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-08-25T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "dotusd", "listing": "2020-08-25T07:00:00.000Z"}, {"id": "linkusd_perp", "datasetId": "LINKUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "LINK", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-08-19T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "linkusd", "listing": "2020-08-18T07:00:00.000Z"}, {"id": "adausd_perp", "datasetId": "ADAUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "ADA", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-08-26T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "adausd", "changes": [{"until": "2023-02-10T08:30:00.000Z", "priceIncrement": 1e-05}], "listing": "2020-08-26T07:00:00.000Z"}, {"id": "dogeusd_perp", "datasetId": "DOGEUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "DOGE", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-02-02T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "dogeusd", "changes": [{"until": "2023-02-10T08:30:00.000Z", "priceIncrement": 1e-06}], "listing": "2021-02-01T07:00:00.000Z"}, {"id": "uniusd_perp", "datasetId": "UNIUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "UNI", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-04-13T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "uniusd", "listing": "2021-04-13T07:00:00.000Z"}, {"id": "xlmusd_perp", "datasetId": "XLMUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "XLM", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-04-16T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "xlmusd", "listing": "2021-04-15T07:00:00.000Z"}, {"id": "aaveusd_perp", "datasetId": "AAVEUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "AAVE", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-12-29T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "aaveusd", "listing": "2021-12-28T07:00:00.000Z"}, {"id": "filusd_perp", "datasetId": "FILUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "FIL", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-10-23T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "filusd", "listing": "2020-10-22T07:00:00.000Z"}, {"id": "algousd_perp", "datasetId": "ALGOUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "ALGO", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2022-03-15T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "algousd", "listing": "2022-03-11T07:00:00.000Z"}, {"id": "atomusd_perp", "datasetId": "ATOMUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "ATOM", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-12-23T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "atomusd", "listing": "2021-12-22T07:00:00.000Z"}, {"id": "thetausd_perp", "datasetId": "THETAUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "THETA", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-04-14T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "thetausd", "listing": "2021-04-13T07:00:00.000Z"}, {"id": "manausd_perp", "datasetId": "MANAUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "MANA", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-11-17T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "manausd", "listing": "2021-11-16T07:00:00.000Z"}, {"id": "egldusd_perp", "datasetId": "EGLDUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "EGLD", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2020-12-21T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "egldusd", "listing": "2020-12-21T07:00:00.000Z"}, {"id": "ftmusd_perp", "datasetId": "FTMUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "FTM", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-11-04T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "ftmusd", "listing": "2021-11-03T07:00:00.000Z"}, {"id": "axsusd_perp", "datasetId": "AXSUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "AXS", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2022-01-12T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "axsusd", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.01}], "listing": "2022-01-11T07:00:00.000Z"}, {"id": "runeusd_perp", "datasetId": "RUNEUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "RUNE", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2022-03-23T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "runeusd", "listing": "2022-03-22T07:00:00.000Z"}, {"id": "nearusd_perp", "datasetId": "NEARUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "NEAR", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-12-15T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "nearusd", "listing": "2021-12-13T07:00:00.000Z"}, {"id": "chzusd_perp", "datasetId": "CHZUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "CHZ", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2022-08-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "chzusd", "listing": "2022-08-17T07:00:00.000Z"}, {"id": "sandusd_perp", "datasetId": "SANDUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "SAND", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2021-11-10T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "sandusd", "listing": "2021-11-09T07:00:00.000Z"}, {"id": "ensusd_perp", "datasetId": "ENSUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "ENS", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2022-08-02T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "ensusd", "listing": "2022-08-01T07:00:00.000Z"}, {"id": "gmtusd_perp", "datasetId": "GMTUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "GMT", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2022-04-27T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "gmtusd", "changes": [{"until": "2022-10-25T03:00:00.000Z", "priceIncrement": 0.001}], "listing": "2022-04-26T07:00:00.000Z"}, {"id": "dogsusd_perp", "datasetId": "DOGSUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "DOGS", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2024-09-10T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "dogsusd", "listing": "2024-09-10T10:00:00.000Z"}, {"id": "opusd_perp", "datasetId": "OPUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "OP", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2022-07-29T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "opusd", "listing": "2022-07-29T07:00:00.000Z"}, {"id": "aptusd_perp", "datasetId": "APTUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "APT", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2022-10-25T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "aptusd", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.001}, {"until": "2023-02-10T08:00:00.000Z", "priceIncrement": 0.0001}], "listing": "2022-10-24T07:00:00.000Z"}, {"id": "wifusd_perp", "datasetId": "WIFUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "WIF", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2024-07-23T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "wifusd", "listing": "2024-07-23T12:00:00.000Z"}, {"id": "suiusd_perp", "datasetId": "SUIUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "SUI", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2024-09-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "suiusd", "listing": "2024-09-18T10:00:00.000Z"}, {"id": "wldusd_perp", "datasetId": "WLDUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "WLD", "quoteCurrency": "USD", "type": "perpetual", "active": true, "availableSince": "2024-10-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "wldusd", "listing": "2024-10-02T10:00:00.000Z"}, {"id": "lunausd_perp", "datasetId": "LUNAUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "LUNA", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2021-09-03T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "lunausd", "availableTo": "2022-05-13T00:00:00.000Z"}, {"id": "xtzusd_perp", "datasetId": "XTZUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "XTZ", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2022-02-14T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "xtzusd", "changes": [{"until": "2022-12-16T06:30:00.000Z", "priceIncrement": 0.001}], "expiry": "2024-05-20T09:00:00.000Z", "availableTo": "2024-05-21T00:00:00.000Z", "listing": "2022-02-14T07:00:00.000Z"}, {"id": "xmrusd_perp", "datasetId": "XMRUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "XMR", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2022-04-21T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "xmrusd", "expiry": "2024-02-15T09:00:00.000Z", "availableTo": "2024-02-16T00:00:00.000Z"}, {"id": "kncusd_perp", "datasetId": "KNCUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "KNC", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2022-04-14T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "kncusd", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.001}], "expiry": "2024-05-20T09:00:00.000Z", "availableTo": "2024-05-21T00:00:00.000Z", "listing": "2022-04-23T07:00:00.000Z"}, {"id": "zilusd_perp", "datasetId": "ZILUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "ZIL", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2022-04-07T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "zilusd", "availableTo": "2022-12-27T00:00:00.000Z", "expiry": "2022-12-26T09:00:00.000Z", "listing": "2022-04-06T07:00:00.000Z"}, {"id": "vetusd_perp", "datasetId": "VETUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "VET", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2022-03-30T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "vetusd", "expiry": "2022-12-26T09:00:00.000Z", "availableTo": "2022-12-27T00:00:00.000Z", "listing": "2022-03-29T07:00:00.000Z"}, {"id": "crvusd_perp", "datasetId": "CRVUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "CRV", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2022-01-06T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "crvusd", "availableTo": "2022-07-01T00:00:00.000Z"}, {"id": "maticusd_perp", "datasetId": "MATICUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "MATIC", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2021-12-08T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "maticusd", "listing": "2021-12-07T07:00:00.000Z", "expiry": "2024-09-04T09:30:00.000Z", "availableTo": "2024-09-06T00:00:00.000Z"}, {"id": "icxusd_perp", "datasetId": "ICXUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "ICX", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2022-03-14T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "icxusd", "expiry": "2024-05-20T09:00:00.000Z", "availableTo": "2024-05-21T00:00:00.000Z", "listing": "2022-03-11T07:00:00.000Z"}, {"id": "galausd_perp", "datasetId": "GALAUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "GALA", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2021-12-02T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "galausd", "expiry": "2022-12-26T09:00:00.000Z", "availableTo": "2022-12-27T00:00:00.000Z", "listing": "2021-12-01T07:00:00.000Z"}, {"id": "roseusd_perp", "datasetId": "ROSEUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "ROSE", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2022-01-18T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "roseusd", "expiry": "2024-05-21T09:00:00.000Z", "availableTo": "2024-05-25T00:00:00.000Z", "listing": "2022-01-17T07:00:00.000Z"}, {"id": "apeusd_perp", "datasetId": "APEUSD_PERP", "exchange": "binance-delivery", "baseCurrency": "APE", "quoteCurrency": "USD", "type": "perpetual", "active": false, "availableSince": "2022-03-28T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.00015, "takerFee": 0.0004, "inverse": true, "contractType": "inverse_perpetual", "contractMultiplier": 10, "underlyingIndex": "apeusd", "expiry": "2024-05-21T09:00:00.000Z", "availableTo": "2024-05-25T00:00:00.000Z", "listing": "2022-03-25T07:00:00.000Z"}]
|