Relation – Chart Builder Legacy – indicator MetaTrader 5

Relation - Chart Builder Legacy - indicator for MetaTrader 5
Indicator for building custom charts, which are based on user-defined formula. Charts are drawn in bars of the timeframe specified in the indicator settings. Charts of the selected instruments are synchronized in time. Spaces in the formula are optional, fractional numbers are only specified using the point. To avoid inconsistency in measurement units and to … Read more

Programming Patters – Builder (classic) – script MetaTrader 5

Programming Patters - Builder (classic) - script for MetaTrader 5
/*********************************************************************                                                            MQL5 Script                                                 Copyright 2019, dmipec                                                       792112@gmail.com Classic Builder Programming Pattern    This pattern was published in the “Design Patterns: Elements of    Reusable Object-Oriented Software”, 1st Edition, by Erich Gamma    (Author), Richard Helm (Author), Ralph Johnson (Author), John    Vlissides (Author), Grady Booch (Foreword). These authors are    collectively known as Gang … Read more

Design patterns – Builder – library MetaTrader 5

Design patterns - Builder - library for MetaTrader 5
//———————————————————————————————- //BUILDER – A CREATIONAL PATTERN // | INTENT // |  | for a complex object // |  |  | separate its construction from representation // |  |  | same construction process // |  |  |  | can create different representations // | APPLICABILITY —————————————————————————– // |  | algorithm for creating a complex object should be // |  |  | independent of the parts // |  |  |  | … Read more