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

AR extrapolation of price - MetaTrader 5용 지표

게시자:
Vladimir
조회수:
18749
평가:
(41)
게시됨:
2010.07.05 14:14
업데이트됨:
2016.11.22 07:32
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

An autoregressive (AR) (or linear prediction) model is given by:

x[n] = -Sum(a[i]*x[n - i], i = 1..p)

where:

  • x[n] is the predicted value of a time series;
  • x[n-p]..x[n-1] are known past values of the same series;
  • a[1]..a[p] are the model coefficients, and p is the model order.

The model coefficients a[1]..a[p] can be fitted to the past data by a variety of methods. This indicator uses the Burg method.

The inputs of the indicator are:

  • UseDiff - a boolean switch to use price differences instead of prices themselves
  • Ncoef - number of model coefficients (model order)
  • Nfut - number of future bars
  • kPast - number of past bars in increments of Ncoef (must be >=1)

The indicator plots two curves: the blue curve represents the model outputs during its fitting, the red curve shows predicted future prices.

UseDiff=false:

AR extrapolation of price

UseDiff=true:

AR extrapolation of price

Linear regression slope Linear regression slope

Linear regression slope normalized to SMA.

A simple RKD Expert Advisor  based on a specified custom RKD indicator A simple RKD Expert Advisor based on a specified custom RKD indicator

This is a simple Expert Advisor, that uses a specified custom RKD indicator.

Fourier extrapolation of price Fourier extrapolation of price

This indicator fits a trigonometric model to prices and extrapolates it in the future.

iS7N_TREND_1 iS7N_TREND_1

Trend indicator with simple smoothing algorithms.