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

Relation - Chart Builder Legacy - MetaTrader 5용 지표

조회수:
5780
평가:
(13)
게시됨:
2017.01.26 09:10
\MQL5\Include\AIV\
Resources.mqh (24.35 KB) 조회
Matrices.mqh (5.04 KB) 조회
\MQL5\Indicators\AIV\
Relation.mq5 (3.19 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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 convert everything into the deposit currency, set the InpAlign parameter to true

Supported operations, by priority of execution:

Parentheses: (a ... b)
Exponentiation: a ^ b
Division: a / b
Multiplication: a * b
Addition: a + b
Subtraction: a - b

Example of application, to find the separation between the currency baskets for the last 1000 bars on the M1 chart:

InpDepth = 1000
InpPeriod - PERIOD_M1
InpExpression = "3 * EURUSD * 1.5 * AUDUSD * GBPUSD - (5 * AUDGBP - 2 * EURGBP) * 1.2 * CHFGBP"

This results in a chart of the synthetic pair, with the condition of buying 3 lots of EURUSD, 1.5 lots of AUDUSD and so on.

Idea of the indicator has been adopted from here and MS Excel.

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/16996

The MasterMind The MasterMind

The Expert Advisor uses the iStochastic (Stochastic) Oscillator, iWPR (Larry Williams' Percent Range) indicators.

Bollinger Bands Bollinger Bands

The Expert Advisor opens trades based on the Bollinger Bands indicator.

PCA Synthetics - Recycle Legacy PCA Synthetics - Recycle Legacy

Indicator for automatic selection of the coefficients for every instrument in a pseudo-stationary portfolio, which tends to equilibrium at zero.

Fractal_Moving_Average Fractal_Moving_Average

Fractal moving average with indication of the last value with a price label with the ability to change the averaging algorithm.