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": "BTCF0:USTF0", "datasetId": "BTCF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "BTC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2019-09-14T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 4e-05, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T15:15:00.000Z", "minTradeAmount": 6e-05}]}, {"id": "ETHF0:USTF0", "datasetId": "ETHF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "ETH", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2019-09-14T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.0008, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T15:15:00.000Z", "minTradeAmount": 0.002}]}, {"id": "BNBF0:USTF0", "datasetId": "BNBF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "BNB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-08-30T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.004, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "LTCF0:USTF0", "datasetId": "LTCF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "LTC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-12T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.04, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "SOLF0:USTF0", "datasetId": "SOLF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "SOL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-08-02T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.02, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.06}]}, {"id": "XRPF0:USTF0", "datasetId": "XRPF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "XRP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-09T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 4, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 6}]}, {"id": "EOSF0:USTF0", "datasetId": "EOSF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "EOS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-12T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "AVAXF0:USTF0", "datasetId": "AVAXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "AVAX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-02T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.08, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "TRXF0:USTF0", "datasetId": "TRXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "TRX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-10-07T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 22, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 24}]}, {"id": "ETCF0:USTF0", "datasetId": "ETCF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "ETC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-04-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.1, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "DOTF0:USTF0", "datasetId": "DOTF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "DOT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-12T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "LINKF0:USTF0", "datasetId": "LINKF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "LINK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-11-18T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "ADAF0:USTF0", "datasetId": "ADAF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "ADA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-02-03T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 4, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "DOGEF0:USTF0", "datasetId": "DOGEF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "DOGE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-05-18T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 22, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 26}]}, {"id": "SHIBF0:USTF0", "datasetId": "SHIBF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "SHIB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-11-23T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 141010, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 187004}]}, {"id": "UNIF0:USTF0", "datasetId": "UNIF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "UNI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-11-18T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T15:15:00.000Z", "minTradeAmount": 0.4}]}, {"id": "XLMF0:USTF0", "datasetId": "XLMF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "XLM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-02-03T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 14, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "XTZF0:USTF0", "datasetId": "XTZF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "XTZ", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-10-07T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "XMRF0:USTF0", "datasetId": "XMRF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "XMR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-09T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.02, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "COMPF0:USTF0", "datasetId": "COMPF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "COMP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-10-07T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.04, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "AAVEF0:USTF0", "datasetId": "AAVEF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "AAVE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-10-04T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.02, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "FILF0:USTF0", "datasetId": "FILF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "FIL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-02T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "ALGF0:USTF0", "datasetId": "ALGF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "ALGO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-17T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 8, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 6}]}, {"id": "NEOF0:USTF0", "datasetId": "NEOF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "NEO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-12-08T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "IOTF0:USTF0", "datasetId": "IOTF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "IOTA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-11-18T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 6, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "ZECF0:USTF0", "datasetId": "ZECF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "ZEC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-12-08T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.06, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.02}]}, {"id": "MKRF0:USTF0", "datasetId": "MKRF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "MKR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-05-30T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.002, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "ATOF0:USTF0", "datasetId": "ATOF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "ATOM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-11-02T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "CRVF0:USTF0", "datasetId": "CRVF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "CRV", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-01-04T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "SUSHIF0:USTF0", "datasetId": "SUSHIF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "SUSHI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-08-26T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "EGLDF0:USTF0", "datasetId": "EGLDF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "EGLD", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-10-04T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.02, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "FTMF0:USTF0", "datasetId": "FTMF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "FTM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-10-04T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 6, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "AXSF0:USTF0", "datasetId": "AXSF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "AXS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-10-07T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "NEARF0:USTF0", "datasetId": "NEARF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "NEAR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-02-09T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.4, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "EURF0:USTF0", "datasetId": "EURF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "EUR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-01T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "CHZF0:USTF0", "datasetId": "CHZF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "CHZ", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.001, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "SANDF0:USTF0", "datasetId": "SANDF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "SAND", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-05-30T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 4, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 2}]}, {"id": "ICPF0:USTF0", "datasetId": "ICPF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "ICP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-02-09T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "GALAF0:USTF0", "datasetId": "GALAF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "GALA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-03-23T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 44, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 26}]}, {"id": "TONF0:USTF0", "datasetId": "TONF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "TON", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.001, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "JASMYF0:USTF0", "datasetId": "JASMYF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "JASMY", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-05-02T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 144, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 168}]}, {"id": "APEF0:USTF0", "datasetId": "APEF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "APE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-03-23T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.8, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.4}]}, {"id": "XAUTF0:USTF0", "datasetId": "XAUTF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "XAUT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-03-09T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.002, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "BTCDOMF0:USTF0", "datasetId": "BTCDOMF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "BTCDOM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-05-09T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.006, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T15:15:00.000Z", "minTradeAmount": 0.01}]}, {"id": "GBPF0:USTF0", "datasetId": "GBPF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "GBP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-01T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "JPYF0:USTF0", "datasetId": "JPYF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "JPY", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-01T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 300, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T15:15:00.000Z", "minTradeAmount": 262}]}, {"id": "EUROPE50IXF0:USTF0", "datasetId": "EUROPE50IXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "EUROPE50IX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-28T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.0006, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "XAGF0:USTF0", "datasetId": "XAGF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "XAG", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-26T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.1, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "GERMANY40IXF0:USTF0", "datasetId": "GERMANY40IXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "GERMANY40IX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-22T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.0002, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.0004}]}, {"id": "STGF0:USTF0", "datasetId": "STGF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "STG", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-05-02T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 4, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "APTF0:USTF0", "datasetId": "APTF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "APT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-10-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "UKOILF0:USTF0", "datasetId": "UKOILF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "UKOIL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-15T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.02, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "XPTF0:USTF0", "datasetId": "XPTF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "XPT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-15T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.002, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "XPDF0:USTF0", "datasetId": "XPDF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "XPD", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-15T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.002, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "ARBF0:USTF0", "datasetId": "ARBF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "ARB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-28T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 1, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "FRANCE40IXF0:USTF0", "datasetId": "FRANCE40IXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "FRANCE40IX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-29T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.0004, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "SPAIN35IXF0:USTF0", "datasetId": "SPAIN35IXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "SPAIN35IX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-29T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.0002, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "UK100IXF0:USTF0", "datasetId": "UK100IXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "UK100IX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-29T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.0004, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "JAPAN225IXF0:USTF0", "datasetId": "JAPAN225IXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "JAPAN225IX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-04-05T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 8e-05, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "HONGKONG50IXF0:USTF0", "datasetId": "HONGKONG50IXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "HONGKONG50IX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-04-05T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.0002, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "AUSTRALIA200IXF0:USTF0", "datasetId": "AUSTRALIA200IXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "AUSTRALIA200IX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-04-05T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.0004, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "TRYF0:USTF0", "datasetId": "TRYF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "TRY", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-07-05T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 62, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.001}]}, {"id": "EVIVF0:USTF0", "datasetId": "EVIVF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "EVIV", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-04-03T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.05, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-05-21T15:50:00.000Z", "minTradeAmount": 0.001}]}, {"id": "BVIVF0:USTF0", "datasetId": "BVIVF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "BVIV", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-04-03T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.05, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-05-21T15:50:00.000Z", "minTradeAmount": 0.001}]}, {"id": "POLF0:USTF0", "datasetId": "POLF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "POL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.001, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "PEPEF0:USTF0", "datasetId": "PEPEF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "PEPE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.001, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "SUIF0:USTF0", "datasetId": "SUIF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "SUI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.001, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1}, {"id": "LUNAF0:USTF0", "datasetId": "LUNAF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "LUNA", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-08-26T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.06, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "availableTo": "2022-05-21T00:00:00.000Z"}, {"id": "OMGF0:USTF0", "datasetId": "OMGF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "OMG", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-11-23T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.8}], "availableTo": "2024-07-05T00:00:00.000Z"}, {"id": "KNCF0:USTF0", "datasetId": "KNCF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "KNC", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-05-02T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "availableTo": "2024-08-24T00:00:00.000Z"}, {"id": "WAVESF0:USTF0", "datasetId": "WAVESF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "WAVES", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-04-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.6, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 0.2}], "availableTo": "2024-07-05T00:00:00.000Z"}, {"id": "MATICF0:USTF0", "datasetId": "MATICF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "MATIC", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-10-04T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "changes": [{"until": "2024-03-03T16:00:00.000Z", "minTradeAmount": 4}], "availableTo": "2024-09-05T00:00:00.000Z"}, {"id": "AMPF0:USTF0", "datasetId": "AMPF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "AMPL", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-07-29T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 2, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "availableTo": "2023-12-12T00:00:00.000Z"}, {"id": "WLDF0:USTF0", "datasetId": "WLDF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "WLD", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-09-28T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.001, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "availableTo": "2024-01-05T00:00:00.000Z"}, {"id": "ANCF0:USTF0", "datasetId": "ANCF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "ANC", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-04-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 10, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "availableTo": "2022-12-22T00:00:00.000Z"}, {"id": "GERMANY30IXF0:USTF0", "datasetId": "GERMANY30IXF0-USTF0", "exchange": "bitfinex-derivatives", "baseCurrency": "GERMANY30IX", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-09-28T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1e-08, "minTradeAmount": 0.0002, "makerFee": -0.0002, "takerFee": 0.00075, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "availableTo": "2022-05-15T00:00:00.000Z"}]
|