당사 팬 페이지에 가입하십시오
- 조회수:
- 3562
- 평가:
- 게시됨:
- 2016.02.16 15:33
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
CSALChartPoints is a class for expanding the capabilities of MqlRates.
Advantages of the class:
- It provides a simpler interface for working with MqlRates.
- 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").
- 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

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

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

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

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