Liquidity_Predator/Strategy/M_SM_RESET.mqh

14 lines
328 B
MQL5
Raw Permalink Normal View History

2026-01-31 07:59:15 +01:00
void M_SM_RESET()
{
stGVL.CurrentLiquidity = 0;
stGVL.TakeProfit = 0;
stGVL.StopLoss = 0;
stGVL.Entry = 0;
stGVL.LastFVGTop = 0;
stGVL.LastFVGBottom = 0;
2026-03-08 10:51:33 +01:00
stGVL.MovedBE = false;
stGVL.bRunnerPosition_CheckClose = false;
2026-01-31 07:59:15 +01:00
stGVL.nStateMachine = SM_WAIT_FOR_START;
2026-02-11 19:29:28 +01:00
M_LogInfo("Statemachine Reset");
2026-01-31 07:59:15 +01:00
}