0
Follow
0
Followers
Pourquoi les données obtenues par GetTicker() sont-elles vides ?
Created 2019-04-23 22:10:18
6
2045
Les futures traditionnelles fonctionnent bien pendant la journée, mais après le redémarrage de la nuit, les données Ticker ne sont plus disponibles, les informations de compte sont accessibles normalement et les paramètres des contrats à terme sont configurés, pourquoi cela ?
Related Recommendations
4.4 How to implement strategies in Python language4.3 Getting started with the Python language4.2 How to implement strategic trading in JavaScript language4.1 JavaScript language quick start3.5 Visual Programming language implementation of trading strategies3.4 Visual programming quick start3.3 How to implement strategies in M language3.2 Getting started with the M language3.1 Quantitative trading programming language evaluationMake Post-Only order and bulk orders on BitMEX through IO
Comment
All comments (6)
使用这段代码测试,显示 GetTicker: market not ready,这是为什么?
function main(){
while(1){
if(exchange.IO("status")){
LogStatus(_D(), "连接")
var info = exchange.SetContractType("rb1905")
var ticker = exchange.GetTicker()
Log(ticker.Info)
} else {
LogStatus(_D(), "未连接")
}
}
}
7 years ago
- 1
