1
Follow
1
Followers
比如下单ETH_USDT合约,市场最新价格是3864.41USDT,此时购买一张ETH的最低价格是386.44USDT,怎么快速获取下单这一张合约的最低价格是多少。
Related Recommendations
Inventor Quant Workflow FAQ (Continuously Updated)Financial Magic Zone Global KOL RecruitmentFAQ Summary (Updating...)PINE Language Introductory Tutorial of FMZ QuantPrimary Tutorial of Strategy Writing with FMZ Quant Trading Platform (Must Read)Getting Started with FMZ Quant Trading Platform (Must Read)
Comment
All comments (2)
python
markets = exchange.GetMarkets()
currency = exchange.GetCurrency()
ct = "swap"
key = currency + "." + ct
Log(key, ":", markets[key]['PricePrecision'])
2 years ago
- 1

