거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
라이브러리

clock - MetaTrader 4용 라이브러리

[삭제]
조회수:
6757
평가:
(27)
게시됨:
2021.04.08 05:15
업데이트됨:
2021.04.09 21:08
\MQL4\Experts\ \MQL4\Include\
clock.mqh (6.44 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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) {return(gmtdt);}
       bool              IsDaylightSavingTime(void);
       bool              IsDaylightSavingTime(int method);
       bool              IsDaylightSavingTime(datetime value, int method);


    Usage


    #property copyright "Copyright 2021, MetaQuotes Software Corp."
    #property link      "https://www.mql5.com"
    #property version   "1.00"
    #property strict
    
    // from clock.mqh
    #define DAYLIGHTSAVING_METHOD_NONE 0
    #define DAYLIGHTSAVING_METHOD_US 1
    #define DAYLIGHTSAVING_METHOD_UK 2
    
    #include <clock.mqh>
    
    //+------------------------------------------------------------------+
    //| Global variables                                                 |
    //+------------------------------------------------------------------+
    CClock Clock;
    //+------------------------------------------------------------------+
    //| Expert initialization function                                   |
    //+------------------------------------------------------------------+
    int OnInit()
      {
    //---
       Clock.GMTOffset = 2;
       Clock.DSTMethod = DAYLIGHTSAVING_METHOD_US;
    //---
       return(INIT_SUCCEEDED);
      }
    //+------------------------------------------------------------------+
    //| Expert deinitialization function                                 |
    //+------------------------------------------------------------------+
    void OnDeinit(const int reason)
      {
    //---
      }
    //+------------------------------------------------------------------+
    //| Expert tick function                                             |
    //+------------------------------------------------------------------+
    void OnTick()
      {
    //---
       Clock.Set(TimeCurrent()); // set clock
       
       Clock.IsDaylightSavingTime(); // return true if the clock time is with in DaylightSavingTime
       Clock.ServerTime(); // return server time with datetime
       Clock.GreenwichMeanTime(); // return GMT time with datetime
       Clock.DateTime(2,DAYLIGHTSAVING_METHOD_US); // return the timezone time with datetime. 
    
      }
    //+------------------------------------------------------------------+
    



















    forex revelation forex revelation

    Short description.

    Daily Target, Max Daily Losses with MagicNumber Daily Target, Max Daily Losses with MagicNumber

    With the aim of educating you how to make trading tools that are simple and can be used immediately.

    Reverse MACD Reverse MACD

    Give the return zone of the MACD Zero Lag

    RSI levels rendered on price as bands RSI levels rendered on price as bands

    RSI levels rendered on price as bands