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

Indicator ASO (Average Sentiment Oscillator) displays the general market climate.

It has four configurable parameters:

  • Range period - range calculation period;
  • Smoothing period - oscillator smoothing period;
  • Method - smoothing method;
  • Mode - calculation mode:
    • Combined - combined mode;
    • Intra-bar - intra-bar mode;
    • Group algorithm - group algorithm mode.

Calculations:

Bulls = MA(BL, Smoothing period, Method)
Bears = MA(BR, Smoothing period, Method)

where:

Combined Mode:

BL = (IBL+GBL)/2
BR = (IBR+GBR)/2

Intra-bar Mode:

BL = IBL
BR = IBR

Group Algorithm Mode:

BL = GBL
BR = GBR
IBL = 50 * (Close - Low + High - Open)/(High - Low)
IBR = 50 * (High - Close + Open - Low)/(High - Low)
GBL = 50*(Close - GL + GH - GO)/(GH - GL)
GBR = 50*(GH - Close + GO - GL)/(GH - GL)
  • GO - Open within Range period;
  • GL -minimum value of High within Range period;
  • GH - maximum value of Low within Range period.

Fig 1. Combined Mode

Fig 1. Combined Mode


Fig. 2. Intra-bar Mode

Fig. 2. Intra-bar Mode


Fig. 2. Group Algorithm Mode

Fig. 2. Group Algorithm Mode

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

SymbolX_Candle SymbolX_Candle

This indicator calculates the index of a given currency, using the USD index. It is based on indicator SymbolX, but four prices are used for calculations: OHLC instead of just one Close price.

SymbolX SymbolX

This indicator calculates the index of a given currency, using the USD index. The Close prices of six currency pairs are used to calculate the index.

CA CA

Indicator CA (Corrected Average), also known as Optimal Moving Average. The benefit of the indicator is the fact that the current value of the timeseries must exceed the current threshold that depends on volatility for the indicator line to follow the price, avoiding false signals in the trend.

DMX DMX

Indicator DMX (Bipolar DMI) is calculated using the standard indicator ADX. However, as compared to that, it displays data as an oscillator with a signal line, and has shorter delay.