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

Ticks Volume Indicator 1.1 - MetaTrader 4용 지표

게시자:
Yurij Izyumov
조회수:
27488
평가:
(32)
게시됨:
2015.12.10 16:29
업데이트됨:
2016.11.22 07:32
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Real author:

Profitrader, improvement by Tor.

In the futures markets the data on trade volumes is reported with a one-day delay. To compensate for this, many analysts use the tick volume indicator (tick volume™): it allows you to track volume changes during the trading day.

Tick ​​volume indicates the number of deals concluded over a certain intraday period, but does not show the number of contracts per deal. Thus, it can make, for example, 50 deals per hour. But the number of contracts concluded for each deal is not clear from this figure. There could be, for example, 50 one-lot orders or 50 hundred-lot orders. From this point of view, the tick volume does not reflect the true volume. However, it is still a valuable indicator because it is the only one that allows you to measure the volume with less delay, although at the expense of accuracy.

This is the main information on the TVI indicator, I had tinkered with it in many ways and found out how to use it. Because of this, Alerts and drawing arrows on the chart were added to signal the user about the possible entries.

TVI Signals

Hints:

It can be used on the major currencies like this: turn on the М5 chart, then the indicator levels are levelUP = 4 and levelDOWN = -4, buy or sell according to them. It is recommended not to go against the trend too much, but in fact a lot of the signals turn out to be against the trend — the so-called corrections, and the indicator also determines the reversals. This can be seen on a history backtest.

For instance, to work with gold — XAUUSD — then on its M5 chart: levelUP = 40 and levelDOWN = -40 (the usual *10).

For the different timeframes the levels are individual. Using MM and averaging makes this a good system. Enter against the trend with caution.

Variables:

extern bool alerts = false;  // alert of supposed deals
extern bool play = false;    // sound notification
extern bool strelka = true;  // draw arrows or not
extern bool searchHight = true; // look for chart fractures
extern bool NaOtkrytieSvechi = true;  // on candlestick opening only
extern bool AllHights = false; // all fractures or (true) only the ones beyond the levels specified in the levelUP and levelDOWN settings
extern int barp = 0; // which candlestick to check: 0 or 1 (1 - not redrawn)
extern int levelUP = 4; // для золота *10
extern int levelDOWN = -4; // *10 for gold

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

Ticks collector Ticks collector

Collection of ticks with writing data to a file and plotting non-standard charts.

Volatile action Volatile action

The idea behind the Expert Advisor is based on the volatility explosion in the pulse waves.

ZigZag Signal ZigZag Signal

Signal based on the ZigZag indicator.

ConvertTicksFile ConvertTicksFile

The converter of the tick files created with the Ticks collector into different data representation formats.