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

The indicator displays the inclined trend line that sets the signal actuating level.

During the first launch of the indicator the actuation level line is gray and not active. When a trader changes its position on a chart it becomes active and turns red.

As soon as the price reaches the actuation level, the indicator starts giving alerts or sound alarms.

After the moment the price crosses the level, the indicator will give one alert at each tick, until the limit of signals defined by the AlertTotal (number of alerts) external variable is reached. After that the actuation level line will turn gray and become inactive, until it is again relocated by a trader to a desired level.

TrendLineAlert

Indicator input parameters: 

//+------------------------------------------------+
//| Indicator input parameters                     |
//+------------------------------------------------+
input string level_name="Trend_Level_1";       // Actuation level name
input string level_comment="trend level";     // Actuation level comment
input color active_level_color=Red;          // Active level color
input color inactive_level_color=Gray;       // Inactive level color
input ENUM_LINE_STYLE level_style=STYLE_SOLID;  // Actuation level style
input ENUM_WIDTH level_width=w_3;            // Actuation level width
input ENUM_ALERT_MODE alert_mode=OnlyAlert;  // Actuation indication version
input uint AlertTotal=10;                     // Number of alerts
input bool Deletelevel=true;                  // Level deletion

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

XTrendlessOS (trendless oscillator) XTrendlessOS (trendless oscillator)

The indicator is based on the description given in Joe DiNapoli book "Trading with DiNapoli Levels". It is designed to evaluate the actual market overbought/oversold states.

VGridLine Intraday X6 VGridLine Intraday X6

Vertical time grid with six hours step.

IncAMAOnArray IncAMAOnArray

CAMAOnArray class is designed for calculation of AMA (Adaptive Moving Average) values on indicator buffers. The example of use of the class is provided.

Save history to HST Save history to HST

The script exports historical data to HST format for its use in MetaTrader 4 client terminal. This file can be imported in MetaTrader 4 as historical data or you can open it as offline chart.