CT Futures FIX mapping can now be retrieved programmatically using this CT-Global API endpoint.
Please note: The above API endpoint returns mappings for Spot and Futures Pairs. The latter can be identified by the "_PERP" suffix.
Below is an example of what the above API endpoints return:
{
"MANAUSDT_PERP": {"core_symbol_id":24,
"core_symbol":"MANAUSDT_PERP",
"core_base_currency":null,
"core_quote_currency":"USD",
"core_fee_currency":"USD",
"quantity_increment":"1",
"tick_size":"0.0001"},
"AAVEUSDT_PERP": {"core_symbol_id":16,
"core_symbol":"AAVEUSDT_PERP",
"core_base_currency":null,
"core_quote_currency":"USD",
"core_fee_currency":"USD",
"quantity_increment":"0.01",
"tick_size":"0.001"}
}
Explanation:
“core_base_currency” → Base Currency of Trading Pair
“core_quote_currency” → Quote Currency of Trading Pair
“core_symbol” → FIX Symbol (used for <Tag 55> Symbol)
“quantity_increment” → Quote Tick Size (used for <Tag 38> OrderQty)