거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
당사 팬 페이지에 가입하십시오
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
- 조회수:
- 16510
- 평가:
- 게시됨:
- 2014.03.27 10:36
- 업데이트됨:
- 2016.11.22 07:32
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Real author:
Alejandro Galindo
The indicator draws four vertical colored lines during a day. Line parameters can be set in the input parameters:
//+----------------------------------------------+ //| Indicator input parameters | //+----------------------------------------------+ //--- common settings input string LinesSirname="TimeZones"; // Line name input uint WeeklyTotal=4; // Number of weeks in the history input uint FutureTotal=1; // The number of lines in the future //--- setting for day bars input color Line_Color_D=clrRed; // Color of a day line input STYLE Line_Style_D=SOLID_; // Style of a day line input ENUM_WIDTH Line_Width_D=w_3; // Width of a day line input bool SetBackground_D=true; // Background display of day lines //--- settings for intraday bars GMT input Hour GMT=H02; // input color Line_Color_D1=clrDodgerBlue; // Color of the GMT line input STYLE Line_Style_D1=SOLID_; // GMT line style input ENUM_WIDTH Line_Width_D1=w_2; // GMT line width input bool SetBackground_D1=true; // Background display of the GMT line //--- settings for intraday bars MST input Hour MST=H06; // input color Line_Color_D2=clrLime; // Color of the MST line input STYLE Line_Style_D2=SOLID_; // Style of the MST line input ENUM_WIDTH Line_Width_D2=w_2; // Width of the MST line input bool SetBackground_D2=true; // Background display of the MST line //--- settings for intraday bars EST input Hour EST=H07; // input color Line_Color_D3=clrDarkOrchid; // Color of the EST line input STYLE Line_Style_D3=SOLID_; // Style of the EST line input ENUM_WIDTH Line_Width_D3=w_2; // Width of the EST line input bool SetBackground_D3=true; // Background display of the EST line
Originally this indicator has been written in MQL4 and was first published in the Code Base at mql4.com on 28.09.2007.
Figure 1. The TimeZones indicator
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/2193

A trading system using The_20s_v020 semaphore arrow indicator.

The indicator draws rectangle candlesticks of a higher timeframe based on the values of the ColorLaguerre indicator.

A trend indicator drawn in the form of a colored cloud. with stops beyond the range of the colored cloud.

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