Detect Friday of The First Week of The Month – To Detect NFP Day – EA MetaTrader 4
//+——————————————————————+ //| FirstFriday.mq4 | //| Copyright 2023, MetaQuotes Ltd. | //| | //+——————————————————————+ #property copyright “Copyright 2023, MetaQuotes Ltd.” #property link “” #property version “1.00” #property strict datetime lastTime = 0; // Variable to store the time of the last detected candle //+——————————————————————+ //| Expert initialization function | //+——————————————————————+ int OnInit() lastTime = iTime(Symbol(),PERIOD_D1,0); return(INIT_SUCCEEDED); … Read more