Guarda come scaricare robot di trading gratuitamente
Ci trovi su Twitter!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Librerie

stdlib.mq5 - libreria per MetaTrader 5

MetaQuotes Software Corp
Pubblicati da::
jaffer wilson
Visualizzazioni:
6168
Valutazioni:
(16)
Pubblicato:
2019.12.26 12:32
Aggiornato:
2019.12.27 07:17
\MQL5\Libraries\
stdlib.mq5 (17.38 KB) visualizza
\MQL5\Include\
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

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!