거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
6774
평가:
(19)
게시됨:
2011.12.15 15:36
업데이트됨:
2016.11.22 07:32
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

The indicator allows to work with changing in real time and mirror reversed (1/X) trading instrument.

Technical and custom indicators can be applied to that reversed trading instrument allowing to do that.

ReverseSymbol

Input parameters:

//+-----------------------------------+
//|  Indicator input parameters       |
//+-----------------------------------+
input color BidColor=Red;                 // Bid line color
input ENUM_LINE_STYLE BidStyle=STYLE_SOLID; // Bid line style
input int IndicatorDigits=3;             // Indicator display accuracy format
input double ratio=1.0                   // Compensation factor 

The last input parameter ratio is just a ratio, by which received candlestick parameters must be multiplied to let their values fit in normal perception range. For instance, it may be not so convenient to observe the price of a financial asset within the range of 0,001. If we multiply this value by 1000, then the final value and its changes can be analyzed more easily.

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

VGridLine Daily VGridLine Daily

Vertical time grid with one day step.

IncATROnArray IncATROnArray

CATROnArray is designed for calculation of ATR (Average True Range) values on indicator buffers. The example of use of the class is provided.

IncADXOnArray IncADXOnArray

CADXOnArray class is designed for calculation of ADX (Average Directional Movement Index) values on indicator buffers. The example of use of the class is provided.

IncADXWOnArray IncADXWOnArray

CADXWOnArray class is designed for calculation of ADXW (Average Directional Movement Index Wilder, ADX Wilder) values on indicator buffers. The example of use of the class is provided.