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

Change Of Volatility - MetaTrader 5용 지표

게시자:
Nikolay Kositsin
조회수:
13903
평가:
(20)
게시됨:
2012.02.14 07:58
업데이트됨:
2023.03.29 13:44
\MQL5\Include\
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Real author:

Rosh

There are a lot of ways to measure volatility (changeability). One of them is calculation of the standard deviation of returns for a certain period of time. Sometimes the current volatility on a short period of time (for example, 6 days) is correlated with volatility of a larger period (for example 100 days). This indicator calculates the correlation of a short volatility Vol_short and a long volatility Vol_long:

Vol_change=Vol_short/Vol_long

Standard deviation here is not that from a difference of closing prices, but from logarithms of the correlation of the current day closing price and closing price of a previous day:

Mom[i]=Close[i]/Close[i+1]
Vol_k=Std(Mom,k),

where k is the period of volatility change.

The indicator uses SmoothAlgorithms.mqh library classes (must be copied to the terminal_data_folder\MQL5\Include). The use of the classes was thoroughly described in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".

This indicator was first implemented in MQL4 and published in Code Base 03.02.2008.

Change Of Volatility indicator

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

Fx10 Fx10

The semaphore signal indicator with the values based on five technical indicators: LWMA, SMA, RSI, Stochastic, MACD.

TrendTriggerMod TrendTriggerMod

The indicator displays trend power and direction.

MBKAsctrend3 MBKAsctrend3

Typical semaphore signal indicator that shows market entry points using color arrows.

FlatTrend2 FlatTrend2

The simplest signal indicator for specifying trend power and direction.