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

stdlib.mq5 - MetaTrader 5용 라이브러리

MetaQuotes Software Corp
게시자:
jaffer wilson
조회수:
6033
평가:
(16)
게시됨:
2019.12.26 12:32
업데이트됨:
2019.12.27 07:17
\MQL5\Libraries\
stdlib.mq5 (17.38 KB) 조회
\MQL5\Include\
stdlib_mq5.mqh (17.38 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Here I have modified the stdlib from MQL4 to MQL5 which was originally written by MetaQuotes Software Corp.

This function is changed:

MT4

//+------------------------------------------------------------------+
//| convert integer to string contained input's hexadecimal notation |
//+------------------------------------------------------------------+
string IntegerToHexString(int integer_number)
  {
   string hex_string="00000000";
   int    value,shift=28;
//---
   for(int i=0; i<8; i++)
     {
      value=(integer_number>>shift)&0x0F;
      if(value<10)
         hex_string=StringSetChar(hex_string,i,ushort(value+'0'));
      else
         hex_string=StringSetChar(hex_string,i,ushort((value-10)+'A'));
      shift-=4;
     }
//---
   return(hex_string);
  }

MT5

//+------------------------------------------------------------------+
//| convert integer to string contained input's hexadecimal notation |
//+------------------------------------------------------------------+
string IntegerToHexString(int integer_number)
  {
   string hex_string="00000000";
   int    value,shift=28;
//---
   for(int i=0; i<8; i++)
     {
      value=(integer_number>>shift)&0x0F;
      if(value<10)
         bool check=StringSetCharacter(hex_string,i,ushort(value+'0'));
      else
         bool check=StringSetCharacter(hex_string,i,ushort((value-10)+'A'));
      shift-=4;
     }
//---
   return(hex_string);
  }


    iWPR+ iWPR+

    iWPR+ is an iWPR %Range function with a positive value.

    VR Smart Grid Lite MT5 VR Smart Grid Lite MT5

    The EA uses large volume orders to partially close other orders, with this approach, the breakeven and profit price is much closer to the current price than if you use all orders in the terminal or their full volumes.

    iRSIOnArray for MT5 iRSIOnArray for MT5

    Header with iRSIOnArray function for use with MQL 4 or 5 code.

    Normalized Price Indicator Normalized Price Indicator

    By using this indicator you can see the normalized price of any chart! You can use this indicator to find the divergence in the market!