Clock – library MetaTrader 5

Clock - library for MetaTrader 5
The library (Clock.mqh) allows creating analog clocks as graphical resources. Features The use of the library is shown in the following source code: // MQL4&5-code // An example of a cross-platform Expert Advisor, which creates an analog clock on the chart #property strict #include <fxsaber\Clock.mqh> // const string ObjName = __FILE__;            // The name of the … Read more

Simple Server Clock – indicator MetaTrader 5

Black Background
Many friends asked me for a simple, non-obtrusive, resource-friendly clock to track the time during their trades. It seems pretty obvious, but it is a must-have for those trading the market manually, waiting for the Market News, or just to visually know what time it is… Trading is an absorbing endeavor! So, here it is… … Read more

clock – library MetaTrader 4

clock - library for MetaTrader 4
CClock – Extension for the datetime Installation Put clock.mqh into your Include folder Use one of the samples that shows the usage Inputs GMTOffset, int(-23~23) Server GMTOffset value DSTMethod, either DAYLIGHTSAVING_METHOD_US, DAYLIGHTSAVING_METHOD_UK or DAYLIGHTSAVING_METHOD_NONE Methods    void              CClock(void);    void              CClock(int offset, int method);    void              Set(const datetime value);    datetime          DateTime(int offset, int method);    datetime          ServerTime(void) {return(srvdt);}    datetime          GreenwichMeanTime(void) … Read more

Simple label indicator that shows Amplitude, Spread and Clock (time) – indicator MetaTrader 5

Simple label indicator that shows Amplitude, Spread and Clock (time) - indicator for MetaTrader 5
The indicator uses up to three named Label objects, with selectable color, font size, offsets, date formatting and a statistical text showing Last and Current Candle Amplitude (MinMax), Last and Current Day Amplitude, Current Tick Spread and Time Remaining for next Candle. This indicator is useful if you wanna focus more on the charts and less … Read more