0
Follow
0
Followers
¿Qué es esto?
Esperamos que con el intercambio[i] Obtener diferentes ListenKey para diferentes propósitos
exchange.IO("api", "POST", "/api/v3/userDataStream")
A través de la prueba, las diferentes plataformas bajo la misma estrategia, no importa cómo los intercambios se valoran, los valores de la clave devueltos son los mismos, si se puede considerar que los intercambios no cambiaron en el pasado.
Por favor, ¿cómo se puede hacer esto?
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)MyLanguage Doc
Comment
All comments (1)
function getListenKey(exchangeIndex) {
var e = exchanges[exchangeIndex]
var key = e.IO("api", "POST", "/api/v3/userDataStream")
Log(key)
return key
}
function main() {
var key0 = getListenKey(0)
var key1 = getListenKey(1)
}
是这个意思吗?
3 years ago
- 1

