Determinar si el entorno de ejecución de la estrategia es un sistema de backtesting.
La estrategia devuelve un valor verdadero, por ejemplo:true
La estrategia devuelve un valor falso, por ejemplo:false
cuando se ejecuta en un entorno de negociación en vivo.
- ¿ Qué?
¿Es Virtual?
function main() {
if (IsVirtual()) {
Log("The current backtest system environment.")
} else {
Log("The current live trading environment.")
}
}
def main():
if IsVirtual():
Log("The current backtest system environment.")
else:
Log("The current live trading environment.")
void main() {
if (IsVirtual()) {
Log("The current backtest system environment.");
} else {
Log("The current live trading environment.");
}
}
Determinar si el entorno de funcionamiento actual es un sistema de backtesting, que se utiliza para ser compatible con la diferencia entre backtesting y trading en vivo.
- ¿ Qué pasa? Correos