0
Follow
0
Followers
Помогите, пожалуйста, как мне получить рыночную информацию о Binance Perpetual Multi-Trading Pairs?
Created 2021-05-02 17:58:34
2
1242
function main() {
exchange.SetContractType("swap")
for(var i = 0; i < records.length; i++)
Log(exchanges[i].GetRecords())
}
В соответствии с инструкцией, записанной в видео,
Ошибка ReferenceError: records is not defined at main (FILE:3)
Related Recommendations
How to Specify Different Versions of Data for the Rented Strategy by Its Rental Code MetadataAdvanced Tutorial for FMZ Quant platform Strategy WritingElementary Tutorial for FMZ Quant platform Strategy WritingGet Started with FMZ Quant PlatformSECURITY BUGI keep getting error: Exchange_GetAccount: Invalid ContractTypeWe have an incredibly profitable market making algorithm for sideways markets on Bitmex - but need expert to help eliminate wait times during downward volatility in the marketError with deribitLimitations of the backtesting engineHow to install ta-lib on linux docker?
Comment
All comments (2)
获取数据
exchange.IO("currency", symbol + '_' + 'USDT')
exchange.SetContractType('swap')
recs = exchange.GetRecords(PERIOD_M30) # 获取K线数组
5 years ago
- 1
