I want to place order by CCXT in the Liquid exchange. I think we need to specify 'params' to get things done. For example,
import ccxt
from pprint import pprint
bf = ccxt.bitflyer()
ticker = bf.fetch_ticker('BTC/JPY', params = { "product_code" : "FX_BTC_JPY" })
pprint(ticker)
In this case, I know "product_code" is "FX_BTC_JPY" for bitFlyer, but I don't know what it should be for Liquid.
If you know what is the "product_code" or any item to be specified in "params" for Liquid FX, please tell me.
Thank you in advance.
