mql5

Embed Size (px)

Citation preview

MQL5 Language REFERENCEfor the MetaTrader 5 client terminal

STUDY MQL5 and SOLVE any tasks:your own technical analysis indicators Createcomplexity of any autotrading trading Usework on variousautomate marketssystems to financial tools based on Develop your own analytical and traditional mathematical achievements methods

Write information trading systems for solving a wide range of tasks (trading, monitoring,alerting, etc.)

2

Content

ContentMQL5 Reference............................................................................................................................42 Sy ntax Comments......................................................................................................................... 43 Identifiers ......................................................................................................................... 44 Reserved ......................................................................................................................... 45 Words Data Ty pes ............................................................................................................................47 Integer Types ......................................................................................................................... 48 Char, Short, Int and Long Types ................................................................................................................ 49 Character Constants ................................................................................................................ 52 Datetime Type ................................................................................................................ 55 Color Type ................................................................................................................ 56 Bool Type ................................................................................................................ 57 Enumerations................................................................................................................ 58 Real Types ......................................................................................................................... 60 String Type ......................................................................................................................... 65 Structures and Classes ......................................................................................................................... 67 Dynamic Array Object ......................................................................................................................... 72 Typecasting ......................................................................................................................... 74 Void Type......................................................................................................................... 80 and NULL Constant Object Pointers ......................................................................................................................... 81 Reference. Modifier & and Keyword this ......................................................................................................................... 82 ............................................................................................................................84 Operations and Expressions Expressions ......................................................................................................................... 85 Arithmetical Operations ......................................................................................................................... 86 Assignment Operations ......................................................................................................................... 87 Operations of Relation ......................................................................................................................... 88 Boolean Operations ......................................................................................................................... 89 Bitwise Operations ......................................................................................................................... 91 Other Operations ......................................................................................................................... 94 Precedence Rules ......................................................................................................................... 98 Operators ............................................................................................................................100 Compound Operator ......................................................................................................................... 102 Expression Operator ......................................................................................................................... 103 Return Operator ......................................................................................................................... 104 Conditional Operator if-else ......................................................................................................................... 105 Conditional Operator ?: ......................................................................................................................... 106 Switch Operator ......................................................................................................................... 108 Loop Operator while ......................................................................................................................... 110 Loop Operator for ......................................................................................................................... 111 Loop Operator do while ......................................................................................................................... 112 Break Operator ......................................................................................................................... 113 Continue Operator ......................................................................................................................... 114 Object Create Operator new ......................................................................................................................... 115 Object Delete Operator delete ......................................................................................................................... 116 Functions ............................................................................................................................117 Function......................................................................................................................... 119 Call Passing Parameters ......................................................................................................................... 120 Function......................................................................................................................... 123 Overloading Description of External Functions ......................................................................................................................... 126 Exporting Functions ......................................................................................................................... 127 Event Handling Functions ......................................................................................................................... 128 V ariables ............................................................................................................................136 2000-2011, MetaQuotes Software Corp.

40

1 Language Basics ................................................................................................. 41

3

ContentLocal Variables ......................................................................................................................... 139 Formal Parameters ......................................................................................................................... 141 Static Variables ......................................................................................................................... 143 Global Variables ......................................................................................................................... 145 Input Variables ......................................................................................................................... 146 Extern Variables ......................................................................................................................... 149 Initialization of Variables ......................................................................................................................... 150 Visibility ......................................................................................................................... 152 Scope and Lifetime of Variables Creating......................................................................................................................... 154 and Deleting Objects ............................................................................................................................157 Preprocessor Declaration of Constants ......................................................................................................................... 158 Program......................................................................................................................... 159 Properties Including......................................................................................................................... 163 Files Importing Functions ......................................................................................................................... 164 ............................................................................................................................166 Object-Oriented Programming Encapsulation and Extensibility of Types ......................................................................................................................... 168 Inheritance ......................................................................................................................... 171 Polymorphism ......................................................................................................................... 174 Overload ......................................................................................................................... 176 Virtual Functions ......................................................................................................................... 177

2

Standard Constants, Enumerations and Structures ................................................................................................. 180............................................................................................................................181 Chart Constants Types of ......................................................................................................................... 182 Chart Events Chart Timeframes ......................................................................................................................... 186 Chart Properties ......................................................................................................................... 188 Positioning Constants ......................................................................................................................... 192 Chart Representation ......................................................................................................................... 193 ............................................................................................................................195 Objects Constants Object Types ......................................................................................................................... 196 Object Properties ......................................................................................................................... 198 Methods ......................................................................................................................... 202 of Object Binding Chart Corner ......................................................................................................................... 206 Visibility ......................................................................................................................... 208 of Objects Levels of......................................................................................................................... 211 Elliott Wave Gann Objects ......................................................................................................................... 212 Web Colors ......................................................................................................................... 214 Wingdings ......................................................................................................................... 216 ............................................................................................................................217 Indicator Constants Price Constants ......................................................................................................................... 218 Smoothing Methods ......................................................................................................................... 221 Indicators Lines ......................................................................................................................... 222 Drawing ......................................................................................................................... 224 Styles Custom Indicator Properties ......................................................................................................................... 228 Indicator Types ......................................................................................................................... 231 Data Type Identifiers ......................................................................................................................... 233 ............................................................................................................................234 Environment State Client Terminal Properties ......................................................................................................................... 235 Running MQL5 Program Properties ......................................................................................................................... 237 Symbol Properties ......................................................................................................................... 239 Account ......................................................................................................................... 246 Properties ............................................................................................................................248 Trade Constants History Database Properties ......................................................................................................................... 249 Order Properties ......................................................................................................................... 250 Position ......................................................................................................................... 254 Properties Deal Properties ......................................................................................................................... 256 Trade Operation Types ......................................................................................................................... 258 Trade Orders in DOM ......................................................................................................................... 259 ............................................................................................................................260 Named Constants 2000-2011, MetaQuotes Software Corp.

4

ContentPredefined Macrosubstitutions ......................................................................................................................... 261 Mathematical Constants ......................................................................................................................... 263 Numerical Type Constants ......................................................................................................................... 265 Uninitalization Reason Codes ......................................................................................................................... 268 Checking Object Pointer ......................................................................................................................... 270 Other Constants ......................................................................................................................... 271 ............................................................................................................................274 Data Structures Structure of the Date Type ......................................................................................................................... 275 Structure of Input Parameters ......................................................................................................................... 276 History Data Structure ......................................................................................................................... 277 DOM Structure ......................................................................................................................... 278 Trade Request Structure ......................................................................................................................... 279 Structure of Request Check Results ......................................................................................................................... 283 Structure of a Trade Request Result ......................................................................................................................... 284 Structure for Current Prices ......................................................................................................................... 287 ............................................................................................................................288 Codes of Errors and W arnings Trade Server Return Codes ......................................................................................................................... 289 Compiler......................................................................................................................... 291 Warnings Compilation Errors ......................................................................................................................... 294 Runtime ......................................................................................................................... 302 Errors ............................................................................................................................309 Input/Output Constants File Opening Flags ......................................................................................................................... 310 In-File Position ......................................................................................................................... 312 Use of a ......................................................................................................................... 313 Codepage MessageBox ......................................................................................................................... 314

3

MQL5 programs ................................................................................................. 316............................................................................................................................317 Program Running ............................................................................................................................322 Client Terminal Events ............................................................................................................................325 Call of Imported Functions ............................................................................................................................327 Runtime Errors

4

Predefined Variables ................................................................................................. 328............................................................................................................................329 _Digits ............................................................................................................................330 _Point _LastError ............................................................................................................................331 ............................................................................................................................332 _Period _StopFlag ............................................................................................................................333 _Sy mbol ............................................................................................................................334 ............................................................................................................................335 _UninitReason

5

Common Functions ................................................................................................. 336............................................................................................................................337 Alert ............................................................................................................................338 CheckPointer Comment ............................................................................................................................340 ............................................................................................................................341 DebugBreak ............................................................................................................................342 ExpertRemove GetPointer ............................................................................................................................344 ............................................................................................................................348 GetTickCount ............................................................................................................................349 MessageBox ............................................................................................................................350 PeriodSeconds Play Sound ............................................................................................................................351 ............................................................................................................................352 Print ............................................................................................................................353 PrintFormat ............................................................................................................................358 ResetLastError ............................................................................................................................359 SetUserError SendFTP ............................................................................................................................360 SendMail ............................................................................................................................361 ............................................................................................................................362 Sleep ............................................................................................................................363 TerminalClose 2000-2011, MetaQuotes Software Corp.

5

Content............................................................................................................................365 TesterW ithdraw al ............................................................................................................................366 ZeroMemory

6

Array Functions ................................................................................................. 367............................................................................................................................368 Array Bsearch Array Copy ............................................................................................................................370 Array Free ............................................................................................................................371 ............................................................................................................................372 Array GetAsSeries ............................................................................................................................373 Array Initialize ............................................................................................................................374 Array IsDy namic ............................................................................................................................375 Array IsSeries ............................................................................................................................377 Array Maximum ............................................................................................................................378 Array Minimum ............................................................................................................................379 Array Range ............................................................................................................................380 Array Resize ............................................................................................................................381 Array SetAsSeries Array Size ............................................................................................................................384 Array Sort ............................................................................................................................385

7

Conversion Functions ................................................................................................. 386............................................................................................................................388 CharToString ............................................................................................................................389 CharArray ToString ............................................................................................................................390 ColorToString ............................................................................................................................391 DoubleToString ............................................................................................................................392 EnumToString ............................................................................................................................394 IntegerToString ............................................................................................................................395 ShortToString ShortArray............................................................................................................................396 ToString ............................................................................................................................397 TimeToString ............................................................................................................................398 NormalizeDouble ............................................................................................................................399 StringToCharArray ............................................................................................................................400 StringToColor ............................................................................................................................401 StringToDouble ............................................................................................................................402 StringToInteger ............................................................................................................................403 StringToShortArray ............................................................................................................................404 StringToTime ............................................................................................................................405 StringFormat

8

Math Functions ................................................................................................. 406MathAbs ............................................................................................................................407 ............................................................................................................................408 MathArccos MathArcsin............................................................................................................................409 ............................................................................................................................410 MathArctan MathCeil ............................................................................................................................411 MathCos ............................................................................................................................412 MathExp ............................................................................................................................413 MathFloor ............................................................................................................................414 MathLog ............................................................................................................................415 MathLog10 ............................................................................................................................416 MathMax ............................................................................................................................417 MathMin ............................................................................................................................418 MathMod ............................................................................................................................419 MathPow ............................................................................................................................420 MathRand ............................................................................................................................421 MathRound............................................................................................................................422 ............................................................................................................................423 MathSin MathSqrt ............................................................................................................................424 MathSrand ............................................................................................................................425 MathTan ............................................................................................................................426 ............................................................................................................................427 MathIsV alidNumber 2000-2011, MetaQuotes Software Corp.

6

Content 9

String Functions ................................................................................................. 428StringAdd ............................................................................................................................429 ............................................................................................................................431 StringBufferLen ............................................................................................................................432 StringCompare ............................................................................................................................434 StringConcatenate StringFill ............................................................................................................................435 StringFind ............................................................................................................................436 ............................................................................................................................437 StringGetCharacter StringInit ............................................................................................................................438 StringLen ............................................................................................................................439 ............................................................................................................................440 StringReplace ............................................................................................................................441 StringSetCharacter ............................................................................................................................443 StringSubstr ............................................................................................................................444 StringToLow er ............................................................................................................................445 StringToUpper ............................................................................................................................446 StringTrimLeft ............................................................................................................................447 StringTrimRight

10

Date and Time ................................................................................................. 448............................................................................................................................449 TimeCurrent ............................................................................................................................450 TimeTradeServer TimeLocal ............................................................................................................................451 TimeGMT ............................................................................................................................452 ............................................................................................................................453 TimeDay lightSavings ............................................................................................................................454 TimeGMTOffset ............................................................................................................................455 TimeToStruct ............................................................................................................................456 StructToTime

11 Account Information ................................................................................................. 457............................................................................................................................458 AccountInfoDouble ............................................................................................................................459 AccountInfoInteger ............................................................................................................................461 AccountInfoString

12

Checkup

................................................................................................. 462

............................................................................................................................463 GetLastError IsStopped ............................................................................................................................464 ............................................................................................................................465 UninitializeReason ............................................................................................................................466 TerminalInfoInteger ............................................................................................................................467 TerminalInfoString ............................................................................................................................468 MQL5InfoInteger ............................................................................................................................469 MQL5InfoString ............................................................................................................................470 Sy mbol ............................................................................................................................471 Period ............................................................................................................................472 Digits ............................................................................................................................473 Point

13

Market Info

................................................................................................. 474

............................................................................................................................475 Sy mbolsTotal ............................................................................................................................476 Sy mbolName ............................................................................................................................477 Sy mbolSelect Sy mbolIsSy............................................................................................................................478 nchronized ............................................................................................................................479 Sy mbolInfoDouble ............................................................................................................................481 Sy mbolInfoInteger ............................................................................................................................483 Sy mbolInfoString ............................................................................................................................484 Sy mbolInfoTick ............................................................................................................................485 Sy mbolInfoSessionQuote ............................................................................................................................486 Sy mbolInfoSessionTrade ............................................................................................................................487 MarketBookAdd ............................................................................................................................488 MarketBookRelease ............................................................................................................................489 MarketBookGet

2000-2011, MetaQuotes Software Corp.

7

Content 14

Timeseries and Indicators Access ................................................................................................. 490............................................................................................................................494 Indexing Direction in Array s, Buffers and Timeseries Organizing ............................................................................................................................497 Data Access ............................................................................................................................506 SeriesInfoInteger ............................................................................................................................508 Bars ............................................................................................................................510 BarsCalculated ............................................................................................................................512 IndicatorCreate ............................................................................................................................514 IndicatorRelease ............................................................................................................................516 Copy Buffer Copy Rates ............................................................................................................................521 Copy Time ............................................................................................................................524 Copy Open ............................................................................................................................527 Copy High ............................................................................................................................530 Copy Low ............................................................................................................................534 Copy Close ............................................................................................................................537 Copy TickV............................................................................................................................540 olume ............................................................................................................................544 Copy RealV olume ............................................................................................................................547 Copy Spread

15

Chart Operations ................................................................................................. 551ChartApply............................................................................................................................553 Template ............................................................................................................................555 ChartW indow Find ChartOpen ............................................................................................................................557 ChartFirst ............................................................................................................................558 ChartNext ............................................................................................................................559 ChartClose ............................................................................................................................560 ............................................................................................................................561 ChartSy mbol ............................................................................................................................562 ChartPeriod ............................................................................................................................563 ChartRedraw ............................................................................................................................564 ChartSetDouble ............................................................................................................................565 ChartSetInteger ............................................................................................................................566 ChartSetString ............................................................................................................................567 ChartGetDouble ............................................................................................................................569 ChartGetInteger ............................................................................................................................571 ChartGetString ............................................................................................................................573 ChartNavigate ............................................................................................................................574 ChartID ............................................................................................................................575 ChartIndicatorAdd ............................................................................................................................576 ChartIndicatorDelete ............................................................................................................................577 ChartIndicatorName ............................................................................................................................578 ChartIndicatorsTotal ............................................................................................................................579 ChartW indow OnDropped ............................................................................................................................580 ChartPriceOnDropped ............................................................................................................................581 ChartTimeOnDropped ............................................................................................................................582 ChartX OnDropped ............................................................................................................................583 ChartY OnDropped ............................................................................................................................584 ChartSetSy mbolPeriod ............................................................................................................................585 ChartScreenShot

16

Trade Functions ................................................................................................. 586............................................................................................................................588 OrderCalcMargin ............................................................................................................................589 OrderCalcProfit ............................................................................................................................590 OrderCheck OrderSend............................................................................................................................591 ............................................................................................................................596 PositionsTotal ............................................................................................................................597 PositionGetSy mbol ............................................................................................................................598 PositionSelect ............................................................................................................................599 PositionGetDouble ............................................................................................................................600 PositionGetInteger 2000-2011, MetaQuotes Software Corp.

8

Content............................................................................................................................601 PositionGetString ............................................................................................................................602 OrdersTotal ............................................................................................................................603 OrderGetTicket ............................................................................................................................605 OrderSelect ............................................................................................................................606 OrderGetDouble ............................................................................................................................607 OrderGetInteger ............................................................................................................................608 OrderGetString ............................................................................................................................609 History Select ............................................................................................................................611 History SelectBy Position ............................................................................................................................612 History OrderSelect ............................................................................................................................613 History OrdersTotal ............................................................................................................................614 History OrderGetTicket ............................................................................................................................616 History OrderGetDouble ............................................................................................................................617 History OrderGetInteger ............................................................................................................................618 History OrderGetString ............................................................................................................................619 History DealSelect ............................................................................................................................620 History DealsTotal ............................................................................................................................621 History DealGetTicket ............................................................................................................................624 History DealGetDouble ............................................................................................................................625 History DealGetInteger ............................................................................................................................626 History DealGetString

17

Global Variables of the Terminal ................................................................................................. 627............................................................................................................................628 GlobalV ariableCheck ............................................................................................................................629 GlobalV ariableTime ............................................................................................................................630 GlobalV ariableDel ............................................................................................................................631 GlobalV ariableGet ............................................................................................................................632 GlobalV ariableName ............................................................................................................................633 GlobalV ariableSet ............................................................................................................................634 GlobalV ariablesFlush ............................................................................................................................635 GlobalV ariableTemp ............................................................................................................................636 GlobalV ariableSetOnCondition ............................................................................................................................637 GlobalV ariablesDeleteAll ............................................................................................................................638 GlobalV ariablesTotal

18

File Functions................................................................................................. 639............................................................................................................................642 FileFindFirst ............................................................................................................................644 FileFindNext ............................................................................................................................645 FileFindClose FileIsExist ............................................................................................................................646 FileOpen ............................................................................................................................647 FileClose ............................................................................................................................649 FileCopy ............................................................................................................................650 FileDelete ............................................................................................................................651 FileMove ............................................................................................................................652 FileFlush ............................................................................................................................653 ............................................................................................................................654 FileIsEnding ............................................................................................................................655 FileIsLineEnding ............................................................................................................................656 FileReadArray ............................................................................................................................657 FileReadBool ............................................................................................................................658 FileReadDatetime ............................................................................................................................659 FileReadDouble ............................................................................................................................660 FileReadFloat ............................................................................................................................661 FileReadInteger ............................................................................................................................662 FileReadLong ............................................................................................................................663 FileReadNumber ............................................................................................................................664 FileReadString ............................................................................................................................665 FileReadStruct FileSeek ............................................................................................................................666 ............................................................................................................................667 FileSize 2000-2011, MetaQuotes Software Corp.

9

Content............................................................................................................................668 FileTell FileW rite ............................................................................................................................669 ............................................................................................................................670 FileW riteArray ............................................................................................................................671 FileW riteDouble ............................................................................................................................672 FileW riteFloat ............................................................................................................................673 FileW riteInteger ............................................................................................................................674 FileW riteLong ............................................................................................................................675 FileW riteString ............................................................................................................................676 FileW riteStruct ............................................................................................................................677 FolderCreate ............................................................................................................................678 FolderDelete ............................................................................................................................679 FolderClean

19

Custom Indicators ................................................................................................. 680............................................................................................................................684 Connection betw een Indicator Properties and Functions ............................................................................................................................686 SetIndexBuffer ............................................................................................................................689 IndicatorSetDouble ............................................................................................................................690 IndicatorSetInteger ............................................................................................................................691 IndicatorSetString ............................................................................................................................692 PlotIndexSetDouble ............................................................................................................................693 PlotIndexSetInteger ............................................................................................................................697 PlotIndexSetString ............................................................................................................................698 PlotIndexGetInteger

20

Object Functions ................................................................................................. 701............................................................................................................................703 ObjectCreate ............................................................................................................................705 ObjectName ............................................................................................................................706 ObjectDelete ............................................................................................................................707 ObjectsDeleteAll ObjectFind............................................................................................................................708 ............................................................................................................................709 ObjectGetTimeBy V alue ............................................................................................................................710 ObjectGetV alueBy Time ............................................................................................................................711 ObjectMove ............................................................................................................................712 ObjectsTotal ............................................................................................................................713 ObjectSetDouble ............................................................................................................................716 ObjectSetInteger ............................................................................................................................717 ObjectSetString ............................................................................................................................719 ObjectGetDouble ............................................................................................................................720 ObjectGetInteger ............................................................................................................................721 ObjectGetString

21 Technical Indicators ................................................................................................. 723............................................................................................................................726 iAC ............................................................................................................................727 iAD ............................................................................................................................728 iADX ............................................................................................................................729 iADX W ilder iAlligator ............................................................................................................................730 ............................................................................................................................732 iAMA ............................................................................................................................733 iAO ............................................................................................................................734 iATR ............................................................................................................................735 iBearsPow er ............................................................................................................................736 iBands ............................................................................................................................737 iBullsPow er ............................................................................................................................738 iCCI iChaikin ............................................................................................................................739 iCustom ............................................................................................................................740 ............................................................................................................................743 iDEMA iDeMarker ............................................................................................................................744 iEnvelopes ............................................................................................................................745 ............................................................................................................................746 iForce 2000-2011, MetaQuotes Software Corp.

10

ContentiFractals ............................................................................................................................747 ............................................................................................................................748 iFrAMA ............................................................................................................................749 iGator iIchimoku ............................................................................................................................751 ............................................................................................................................752 iBW MFI ............................................................................................................................753 iMomentum ............................................................................................................................754 iMFI ............................................................................................................................755 iMA ............................................................................................................................756 iOsMA ............................................................................................................................757 iMACD ............................................................................................................................758 iOBV ............................................................................................................................759 iSAR ............................................................................................................................760 iRSI ............................................................................................................................761 iRV I ............................................................................................................................762 iStdDev iStochastic ............................................................................................................................763 ............................................................................................................................764 iTEMA ............................................................................................................................765 iTriX ............................................................................................................................766 iW PR ............................................................................................................................767 iV IDy A iV olumes ............................................................................................................................768

22

Working with events ................................................................................................. 769............................................................................................................................770 EventSetTimer ............................................................................................................................771 EventKillTimer ............................................................................................................................772 EventChartCustom

23

Standard Library ................................................................................................. 777Basic Class ............................................................................................................................778 CObject Prev ......................................................................................................................... 779 Prev ......................................................................................................................... 780 Next ......................................................................................................................... 781 Next ......................................................................................................................... 782 Compare......................................................................................................................... 783 Save ......................................................................................................................... 785 Load ......................................................................................................................... 787 Type ......................................................................................................................... 789 ............................................................................................................................790 Classes of data CArray ......................................................................................................................... 791 Step ................................................................................................................ 793 Step ................................................................................................................ 794 Total ................................................................................................................ 795 Available ................................................................................................................ 796 Max ................................................................................................................ 797 IsSorted ................................................................................................................ 798 SortMode ................................................................................................................ 799 Clear ................................................................................................................ 800 Sort ................................................................................................................ 801 Save ................................................................................................................ 802 Load ................................................................................................................ 803 CArrayChar ......................................................................................................................... 804 Reserve ................................................................................................................ 806 Resize ................................................................................................................ 807 Shutdown ................................................................................................................ 808 Add ................................................................................................................ 809 AddArray ................................................................................................................ 810 AddArray ................................................................................................................ 811 Insert ................................................................................................................ 813 InsertArray ................................................................................................................ 814 InsertArray ................................................................................................................ 815 2000-2011, MetaQuotes Software Corp.

11

ContentAssignArray ................................................................................................................ 817 AssignArray ................................................................................................................ 818 Update ................................................................................................................ 820 Shift ................................................................................................................ 821 Delete ................................................................................................................ 822 DeleteRange ................................................................................................................ 823 At ................................................................................................................ 824 CompareArray ................................................................................................................ 826 CompareArray ................................................................................................................ 827 InsertSort ................................................................................................................ 828 Search ................................................................................................................ 829 SearchGreat ................................................................................................................ 830 SearchLess ................................................................................................................ 831 SearchGreatOrEqual ................................................................................................................ 832 SearchLessOrEqual ................................................................................................................ 833 SearchFirst ................................................................................................................ 834 SearchLast ................................................................................................................ 835 Save ................................................................................................................ 836 Load ................................................................................................................ 837 Type ................................................................................................................ 839 CArrayShort ......................................................................................................................... 840 Reserve ................................................................................................................ 842 Resize ................................................................................................................ 843 Shutdown ................................................................................................................ 844 Add ................................................................................................................ 845 AddArray ................................................................................................................ 846 AddArray ................................................................................................................ 847 Insert ................................................................................................................ 849 InsertArray ................................................................................................................ 850 InsertArray ................................................................................................................ 851 AssignArray ................................................................................................................ 853 AssignArray ................................................................................................................ 854 Update ................................................................................................................ 856 Shift ................................................................................................................ 857 Delete ................................................................................................................ 858 DeleteRange ................................................................................................................ 859 At ................................................................................................................ 860 CompareArray ................................................................................................................ 862 CompareArray ................................................................................................................ 863 InsertSort ................................................................................................................ 864 Search ................................................................................................................ 865 SearchGreat ................................................................................................................ 866 SearchLess ................................................................................................................ 867 SearchGreatOrEqual ................................................................................................................ 868 SearchLessOrEqual ................................................................................................................ 869 SearchFirst ................................................................................................................ 870 SearchLast ................................................................................................................ 871 Save ................................................................................................................ 872 Load ................................................................................................................ 874 Type ................................................................................................................ 876 CArrayInt ......................................................................................................................... 877 Reserve ................................................................................................................ 879 Resize ................................................................................................................ 880 Shutdown ................................................................................................................ 881 Add ................................................................................................................ 882 AddArray ................................................................................................................ 883 AddArray ................................................................................................................ 884 Insert ................................................................................................................ 886 2000-2011, MetaQuotes Software Corp.

12

ContentInsertArray ................................................................................................................ 887 InsertArray ................................................................................................................ 888 AssignArray ................................................................................................................ 890 AssignArray ................................................................................................................ 891 Update ................................................................................................................ 893 Shift ................................................................................................................ 894 Delete ................................................................................................................ 895 DeleteRange ................................................................................................................ 896 At ................................................................................................................ 897 CompareArray ................................................................................................................ 899 CompareArray ................................................................................................................ 900 InsertSort ................................................................................................................ 901 Search ................................................................................................................ 902 SearchGreat ................................................................................................................ 903 SearchLess ................................................................................................................ 904 SearchGreatOrEqual ................................................................................................................ 905 SearchLessOrEqual ................................................................................................................ 906 SearchFirst ................................................................................................................ 907 SearchLast ................................................................................................................ 908 Save ................................................................................................................ 909 Load ................................................................................................................ 911 Type ................................................................................................................ 913 CArrayLong ......................................................................................................................... 914 Reserve ................................................................................................................ 916 Resize ................................................................................................................ 917 Shutdown ................................................................................................................ 918 Add ................................................................................................................ 919 AddArray ................................................................................................................ 920 AddArray ................................................................................................................ 921 Insert ................................................................................................................ 923 InsertArray ................................................................................................................ 924 InsertArray ................................................................................................................ 925 AssignArray ................................................................................................................ 927 AssignArray ................................................................................................................ 928 Update ................................................................................................................ 930 Shift ................................................................................................................ 931 Delete ................................................................................................................ 932 DeleteRange ................................................................................................................ 933 At ................................................................................................................ 934 CompareArray ................................................................................................................ 936 CompareArray ................................................................................................................ 937 InsertSort ................................................................................................................ 938 Search ................................................................................................................ 939 SearchGreat ................................................................................................................ 940 SearchLess ................................................................................................................ 941 SearchGreatOrEqual ................................................................................................................ 942 SearchLessOrEqual ................................................................................................................ 943 SearchFirst ................................................................................................................ 944 SearchLast ................................................................................................................ 945 Save ................................................................................................................ 946 Load ................................................................................................................ 948 Type ................................................................................................................ 950 CArrayFloat ......................................................................................................................... 951 Delta ................................................................................................................ 953 Reserve ................................................................................................................ 954 Resize ................................................................................................................ 955 Shutdown ................................................................................................................ 956 Add ................................................................................................................ 957 2000-2011, MetaQuotes Software Corp.

13

ContentAddArray ................................................................................................................ 958 AddArray ................................................................................................................ 959 Insert ................................................................................................................ 961 InsertArray ................................................................................................................ 962 InsertArray ................................................................................................................ 963 AssignArray ................................................................................................................ 965 AssignArray ................................................................................................................ 966 Update ................................................................................................................ 968 Shift ................................................................................................................ 969 Delete ................................................................................................................ 970 DeleteRange ................................................................................................................ 971 At ................................................................................................................ 972 CompareArray ................................................................................................................ 974 CompareArray ................................................................................................................ 975 InsertSort ...........................................