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

CSALChartPoints - MetaTrader 5용 라이브러리

조회수:
3293
평가:
(22)
게시됨:
2016.02.16 15:33
\MQL5\Include\
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

CSALChartPoints is a class for expanding the capabilities of MqlRates.

Advantages of the class:

  1. It provides a simpler interface for working with MqlRates.
  2. It extends the parameter set of the candlesticks (for example, it add the body_high parameter, which shows the closing price for the bullish candles and the opening price for the bearish candles — the upper limit of the candle's "body").
  3. Introduces an abstract term Value, which indicates one of the specified parameters of the candlesticks.

Example №1 (the average values of 400 bar for the High parameter of the candlesticks):

CSALChartPoints points;
points.PointType(HIGH);
double m_avg = points.Avg(400);

Example №2 (the average values of 400 bar for the Low parameter of the candlesticks):

CSALChartPoints points;
points.PointType(LOW);
double m_avg = points.Avg(400);

Example №3 (processing set of 100 bars):

double sum;
CSALChartPoints points;
for(int i = 100; i > 0; i--)
  sum = points.At(i).high;

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

TangoLineCloud TangoLineCloud

The indicator displays rapid reversals to the dynamic change of the direction in the form of a cloud.

TangoLine_HTF TangoLine_HTF

The TangoLine indicator with the timeframe selection option available in the input parameters.

TangoLineCloud_HTF TangoLineCloud_HTF

The TangoLineCloud indicator with the timeframe selection option available in the input parameters.

ColorXADX_HTF ColorXADX_HTF

The ColorXADX indicator with the timeframe selection option available in the input parameters.