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

The simple indicator for displaying some relevant information about a position opened on the current chart right in that chart window. The data includes position direction, profit in points and distances to Stop Loss and Take Profit from the current price in points. If the position is currently in a loss-making state, the text is colored in red. Otherwise, it is colored in green.

This indicator can be quite useful in multicurrency strategies when the use of Toolbox panel is not appropriate.

Indicator input parameters:

//+----------------------------------------------+
//| Indicator input parameters                   |
//+----------------------------------------------+
input color  UpColor=Lime;//color of profitable position
input color  DnColor=Red;//color of unprofitable position
input color  ZrColor=Gray;//color of position without profit
input int    FontSize=15; //font size
input type_font FontType=Font14; //font type
input ENUM_BASE_CORNER  WhatCorner=CORNER_LEFT_LOWER; //location corner
input uint Y_=1; //vertical location
input uint X_=5; //horizontal location

Place GetFontName.mqh to the terminal_directory\MQL5\Include. 

 

PositionInfo

PositionInfo 

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

Exp_ATR_Trailing Exp_ATR_Trailing

The Expert Advisor moves Stop Loss of the open position along the border of the channel built using ATR_Trailing.

i-AnyRange2 i-AnyRange2

The indicator of two unspecified time intervals.

ColorStochastic_HTF ColorStochastic_HTF

Standard Stochastic oscillator displayed as a cloud that can be located by setting the indicator timeframe value different from the chart one.

iMACD±ATR iMACD±ATR

MACD shifted for the trading range is used to determine a trend and overbought/oversold areas.