Detect Friday of The First Week of The Month – To Detect NFP Day – EA MetaTrader 4

Detect Friday of The First Week of The Month - To Detect NFP Day - expert for 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

High, Low and Close of the previous day, week or month – indicator MetaTrader 4

High, Low and Close of the previous day, week or month - indicator for MetaTrader 4
Optimized versions available for free:Metatrader 4: Metatrader 5: Follow on instagram: The indicator shows the High, Close and Low of the previous day, week or month. These levels are very commonly used as support and resistance among traders, so the indicator will draw them and leave a gap between periods to make it easy to … Read more