거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
귀하의 MetaTrader 5 터미널에서 CodeBase에 액세스 해보세요
올바른 코드를 찾을 수 없습니까? 프리랜싱 섹션에서 주문하십시오
Expert Advisor 또는 지표 작성 방법

MQL5 MetaTrader 5용 기술 지표 소스 코드 - 2

icon

MQL5 기술 지표는 주식 및 원자재 시장뿐만 아니라 MetaTrader 5 외환 가격 차트를 분석합니다. 지표는 추세 방향과 전력, 과다 구매 및 과매도 상태, 지원 및 저항 수준을 정의합니다. 기초적인 수학적 모델은 거래자들이 거래 시스템의 시그널을 받아들이거나 거부할 수 있도록 현재의 시장 상태에 대한 객관적인 평가를 제공합니다.

MetaTrader 5에서 제공되는 지표를 다운로드하여 시작할 수 있습니다. 지표 라이브러리는 또한 MetaTrader 5 플랫폼과 MetaEditor 개발 환경에서 직접 사용할 수 있습니다.

코드를 제출하세요

DCC / Piercing

Wickless breakout

A wick engulf candlestick pattern

Custom Hammer and Inverted Hammer

Six bulls or six bear continuous candles

Checks if either upper or lower Wick range of a candlestick is greater than Body range of a candlestick and plot a wingding

This indicator calculates the range difference between the 'MACD and Signal lines' and also the range distance between 'the last two MACD bar'.

The Heiken Ashi indicator with no repaint or repaint mode input option.

This indicator helps user estimate the potential price movement for the current day, based on 20 days historical data and market trends.

This indicator uses two moving averages to calculate the market trend and changes color depending on the trend direction.

This is an indicator with a rainbow-like display, both for trend or pullback prediction.

Hidden Engulfing Candlestick Pattern

Anlayse swing highs and lows

Donchian Channel for traders or young developers by William210

Keltner Channel for traders or young developers by William210

The default CCI in MT5 doesn't have the shift parameter. This script implements the shift.

Let follow previous EA by this link https://www.mql5.com/en/code/46630

This is an edit of the Mod_ATR_Trailing_Stop by MQL5 user @Scriptor found here https://www.mql5.com/en/code/20423 . MT5 indicator .mql5 and .ex5 files, report any bugs, I'll fix.

ATR - Average True Range - beginner tutorial to learn how to code in MQL5

AO - Awesome Oscillator - without iAO() beginner tutorial to learn how to code in MQL5

A Marubozo is a long-bodied candlestick with no shadow, from the Japanese word meaning "close-cropped". Candlestick charts look at the opening and closing price on a single day and are used by technical traders.

AMA - Adaptive Moving Average - beginner tutorial to learn how to code in MQL5

Alligator beginner tutorial to learn how to code in MQL5

Rsi without Irsi() beginner tutorial to learn how to code in MQL5

Fractals - adjustable period and prices for MT5

Here is my implementation of a colored Hull Moving Average.

Wick Ratio Candlesticks are recognized by its upper and lower wick ratio instead of open and close properties.

A tool which refreshes the chart automatically and will make active indicators update if something stopped plotting on the chart.

Stochastic beginner tutorial to learn how to code in MQL5

It will automatically plot a colored horizontal line on the previous open/highs/lows/close of the selected period, and it will make the lines consistent on this price when switching timeframes.

This is a helper function which enables you to find the price of the symbol (the prices on the Y-axis) wherever you click the mouse on the chart. Using OnChartEvent, we don't have an MQL5 function in the API to do this, we can only obtain X and Y pixel values with mouse click.

Momentum beginner tutorial to learn how to code in MQL5

Ichimoku beginner tutorial to learn how to code in MQL5

MACD beginner tutorial to learn how to code in MQL5

Bands Bollinger beginner tutorial to learn how to code in MQL5

Rsi beginner tutorial to learn how to code in MQL5

Moving average beginner tutorial to learn how to code in MQL5

One of the latest version of this indicator at the moment. Huge base of different modifications of moving averages, with multitimesframe function, sending signals to e-mail and push notifications.

Trend Dashboard Indicator MetaTrader 5 indicator — a multi-timeframe indicator that is based on three standard indicators: Stochastic oscillator, RSI (Relative Strength Index), and CCI (Commodity Channel Index). It displays current trend directions for M1, M5, M15, M30, H1, H4, D1, W1, and MN1 timeframes. When you follow such an indicator you have a clear picture of the trends across all important timeframes. It doesn't matter which timeframe you attach this indicator to. The indicator can be downloaded for MT4 and MT5.

I wanted to build a moving average which would create an alert when the price moves over the line by a user defined amount of points. It creates both bullish and bearish signals depending on the direction of market price moving through the MA. It is designed for slow length moving averages (default is 200-day MA). EDIT: I now added a second version of the indicator which uses Arrow buffers instead of ObjectCreate.

123456789...133