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

Rabbit - MetaTrader 5용 지표

게시자:
Nikolay Kositsin
조회수:
12601
평가:
(18)
게시됨:
2012.01.17 14:26
업데이트됨:
2016.11.22 07:32
rabbit.mq5 (18.58 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Real author:

Martingeil

Modified version of "Rabbit" indicator written by JonKatana. According to the version author's opinion it looks better without fuzzy lines on a chart.

This indicator was first implemented at MQL4 and published in Code Base at mql4.com 14.03.2011.

Input parameters:

//+----------------------------------------------+
//| Indicator input parameters                   |
//+----------------------------------------------+
input int   Yesterday    = 0;    // Days shift 0 - current,1 - previous, 1 - future
input int   Levels       = 7;    // Number of levels
input bool  Comm         = true;  // Display of comments on a chart
input bool  Sublevel     = true;  // Display of sublevels in the middle between basic levels
//----
input color FontColor=Black;            // Price level color
//----
input color LineColor    = DeepSkyBlue; // Basic line color
input STYLE LineStyle    = SOLID_;      // Basic line style
input Width LineWidth    = Width_1;     // Basic line width
//----
input color MLineColor   = Lime;         // Sublevels line color
input STYLE MLineStyle   = DASHDOTDOT_; // Sublevels line style
input Width MLineWidth   = Width_1;     // Sublevels line width
//----
input color VlineColor   = Black;        // Vertical line color
input STYLE VLineStyle   = SOLID_;      // Vertical line style
input Width VLineWidth   = Width_1;     // Vertical line width
//----
input color HL_lineColor = Lime;         // Previous day range line color
input STYLE HL_lineStyle = SOLID_;      // Previous day range line style
input Width HL_lineWidth = Width_5;     // Previous day range line width
//----
input bool  Background=true;            // Draw vertical lines as background

Rabbit

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

SilverTrend_HTF_Signal SilverTrend_HTF_Signal

SilverTrend_HTF_Signal shows a trend direction or a signal for performing a deal generated by SilverTrend_Signal indicator as a graphic object with colored trend indication or deal direction.

IncBandsOnArray IncBandsOnArray

The CBandsOnArray is intended for calculation of the Bollinger Bands ® (BB) on an indicator buffer.

IncCCIOnArray IncCCIOnArray

CCCIOnArray class is designed for calculation of Commodity Channel Index (CCI) values on indicator buffer. The example of use of the class is provided.

BrainTrend_HTF_Signal BrainTrend_HTF_Signal

BrainTrend_HTF_Signal displays trend directions from the last bars of the BrainTrend1 and BrainTrend2 as a sequence of graphical objects. The number of bars to be used is set in the input parameters.