O ambiente operacional da estratégia é o sistema de retrospecção.
A política é executada no ambiente do sistema de retrospecção e retorna o valor verdadeiro, por exemplo:true
A estratégia é executada em um ambiente de disco real e retorna falsos valores, como:false
- Não.
Bool
É Virtual?
function main() {
if (IsVirtual()) {
Log("当前为回测系统环境。")
} else {
Log("当前为实盘环境。")
}
}
def main():
if IsVirtual():
Log("当前为回测系统环境。")
else:
Log("当前为实盘环境。")
void main() {
if (IsVirtual()) {
Log("当前为回测系统环境。");
} else {
Log("当前为实盘环境。");
}
}
Determine se o ambiente de operação atual é um sistema de retrospecção, para compatibilizar as diferenças entre retrospecção e disco real.
Dormir Correio