거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
귀하의 MetaTrader 5 터미널에서 CodeBase에 액세스 해보세요
올바른 코드를 찾을 수 없습니까? 프리랜싱 섹션에서 주문하십시오
Expert Advisor 또는 지표 작성 방법

MQL5 MetaTrader 5용 소스 코드 라이브러리 - 2

icon

라이브러리는 특정 기능을 포함하는 작은 하위 프로그램으로, 새로운 응용 프로그램을 개발하는 데 사용될 수 있습니다. 일단 작성되고 철저히 점검되면, 사용자는 라이브러리를 통해 새로운 MQL5 응용 프로그램의 개발 속도를 높일 수 있습니다. 예시 중 하나는 여러 수치 분석 함수를 포함하는 ALGLIB 라이브러리입니다.

MetaEditor에서 거래전략 개발 시 라이브러리 소스 코드를 다운로드하여 사용할 수 있습니다. 그것들은 MetaTrader 5에서는 독립적으로 실행할 수 없습니다.

코드를 제출하세요
최근 | 최고

gnome sort is based on the technique used by the dutch garden gnome

This is a wrap for using databasexxx

a simple sorting algorithm that people use to manually sort cards in a bridge hand

A light header-only version of Log4mql that provides standardized logging.

an in-place comparison sorting algorithm

an in-place comparison sort

a much more efficient version of selection sort

an efficient, general-purpose sorting algorithm

A sorter class to sort an array based on other arrays.

a highly efficient sorting algorithm, based on partitioning of array of data into smaller arrays

represent an operation to be performed on the elements of an object structure. visitor lets you define a new operation without changing the classes of the elements on which it operates

define the skeleton of an algorithm in an operation, deferring some steps to subclasses. template method lets subclasses redefine certain steps of an algorithm without changing the algorithm's structure

define a family of algorithms, encapsulate each one, and make them interchangeable. strategy lets the algorithm vary independently from clients that use it

allow an object to alter its behavior when its internal state changes. the object will appear to change its class

An (optional) include file to enhance error code handling experience.

An (optional) include file to enhance debugging experience.

define a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically

define a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically

without violating encapsulation, capture and externalize an object's internal state so that the object can be restored to this state later

Define an object that encapsulates how a set of objects interact mediator promotes loose coupling by keeping objects from referring to each other explicitly, and it lets you vary their interaction independently

Provide a way to access the elements of an aggregate object sequentially without exposing its underlying representation

Given a language, define a represention for its grammar along with an interpreter that uses the representation to interpret sentences in the language

A logging library similar to Log4j but for MQL.

Encapsulate a request as an object thereby letting you parameterize clients with different requests. Queue or log requests, and support undoable operations

Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request. Chain the receiving objects and pass the request along the chain until an object handles it

Provide a surrogate or placeholder for another object to control access to it

Use sharing to support large numbers of fine-grained objects efficiently

Provide a unified interface to a set of interfaces in a subsystem; facade defines a higher-level interface that makes the subsystem easier to use

Attach additional responsibilities to an object dynamically; and provide a flexible alternative to subclassing for extending functionality

Create an object tree which represents part-whole hierarchies, so that the client would treat objects and compositions of objects uniformly.

A native implementation of neural networks in pure MQL, bundled with an easy to use interface, with easy support of saving and loading of the network configurations after training.

Decouple an abstraction from its implementation so that the two can vary independently

Convert the interface of a class into another expected interface; classes with incompatible interfaces can work together

A collection of classic creational GoF design patterns

Ensure one instance of a class with a global point of access

Create objects by copying a prototype

An interface for creating an object that defers instantiation to subclasses. They decide which class to instantiate.

For a complex object separate its construction from representation. Same construction process can create different representations

Provide an interface for creating families of related or dependent objects without specifying their concrete classes.

Modeling multiple inheritance with the Twin pattern.

12345678