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

ZoomPrice tick indicator - MetaTrader 5용 지표

조회수:
11050
평가:
(42)
게시됨:
2017.01.19 16:55
\MQL5\Indicators\fxsaber\ \MQL5\Include\
EventBase.mqh (3.63 KB) 조회
\MQL5\Include\fxsaber\
Pointer.mqh (0.63 KB) 조회
\MQL5\Include\fxsaber\ChartObjects\
Resource.mqh (0.51 KB) 조회
\MQL5\Include\fxsaber\ChartObjects\Ticks\
Tick.mqh (0.85 KB) 조회
Ticks.mqh (5.45 KB) 조회
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

This indicator allows you to see the necessary price movement details via the convenient scale setting interface.

The indicator makes possible to view the necessary price movements from any "altitude".

 

The indicator interface

  • The left mouse button rewinds the price.
  • Click SHIFT to enable scaling (move the mouse).
  • If the cursor is on a normal price chart, clicking SHIFT displays history data located under the cursor. This simplifies the search for a necessary interval (move the mouse).

The chart is an interactive object. It can be used for any purpose, for example, as part of an EA

#include <fxsaber\ChartObjects\ChartObject_ZoomPrice.mqh>

CHARTOBJECT_ZOOMPRICE ChartObject;

void OnChartEvent( const int id, const long& lparam, const double& dparam, const string& sparam )
{
  EVENTBASE::MyEvent(id, lparam, dparam, sparam);
}

void OnTimer( void )
{
  EVENTBASE::MyEventTimer();
}

void OnTick( void )
{
  EVENTBASE::MyEventTick();
}


The EA operation results screenshot displays that this is the graphical object with the manually adjustable parameters.


The indicator is self-sufficient — do not use standard libraries.

It is compiled for MetaTrader 4, though it shows nothing in it.

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

RobotPowerM5 meta4V12 RobotPowerM5 meta4V12

Analyzing iBullsPower and iBearsPower indicators on the first bar.

CenterOfGravityCandle CenterOfGravityCandle

Ehlers Center of Gravity indicator in the form of candles.

Exp_GStopLoss Exp_GStopLoss

This Expert Advisor closes all positions if the total loss exceeds a predefined limit.

Exp_GTakeProfit Exp_GTakeProfit

This Expert Advisor closes all positions if the total profit exceeds a predefined limit.