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

MQL4 MetaTrader용 Expert Advisor의 소스 코드 4 - 12

icon

분석 및 거래를 자동화하는 다양한 애플리케이션은 'Expert Advisor' 섹션에서 확인할 수 있습니다. 서로 다른 거래 알고리즘을 기반으로 한 다양한 애플리케이션이 특징이며, 다양한 수준의 자동화 기능을 제공한다. 분석 및 거래 프로세스를 완전히 자동화할 수 있는 간단한 EA와 복합적인 거래 로봇을 찾을 수 있습니다.

이러한 애플리케이션은 MetaTrader 4에서 다운로드하여 실행할 수 있습니다. Strategy 테스터에서 Expert Advisor를 테스트하고 최적화하는 것이 좋습니다. 라이브러리의 Expert Advisors는 MetaTrader 4 플랫폼과 MetaEditor 개발 환경에서 액세스할 수 있습니다.

코드를 제출하세요

The Expert Advisor opens an order by the trading strategy, places a take profit and a stop loss It protects the position by moving the stop loss to breakeven, and maintains it with a trailing stop.

The calculation of profit/loss in the deposit currency at the desired symbol price level on all open orders.

Arrangement of the pending orders at equal intervals (steps).

The Moving Average indicator data is used for trading. If the price goes away from the Moving Average by a certain number of points, then an order is placed in the direction of the Moving Average line.

RSI Bollinger Bands are used to establish overbought and oversold RSI regions for generation of short and long trading signals.

Trades on price spikes around important financial announcements.

This code has some functions to close all opened orders once the drawdown reaches a specific percentage of the account balance.

Easy EA for closing positions with profit or loss. All positions of chart's symbol are counted separately.

The Expert Advisor moves the Stop Loss in the direction of the price movement using various methods.

This Expert Advisor uses three indicators: MA(150), RSI(3) with the levels of 80 and 20, Stochastic(6, 3, 3) with the levels of 70 and 30. The direction of opening deals is based on MA. Entry by RSI and Stochastic. Exit by Stochastic.

The Expert Advisor reverses the orders after closing.

Opens orders using the martingale and a virtual trailing stop.

Implementation of a trading system based on divergence detection.

The Expert Advisor trades based on the support/resistance levels set by the user, while trailing the Stop Loss order.

The Expert Advisor places a grid of pending orders in both directions several minutes before the specified time and trails the Stop Loss order after the orders trigger.

The Expert Advisor is based on the "On the MaZi" strategy.

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

The Expert Advisor based on the "New Trading Dimensions" book by Bill Williams.

The virtual trailing stop can place stop loss, take profit and trail the order in a way that they are not visible to the broker.

Simple Expert Advisor based on the RSI indicator.

A trend strategy based on moving averages with colors as in a traffic light. The purpose of writing the EA — to test the strategy on history and pick working parameters.

The Expert Advisor watches the market orders and generates a sound signal after a predefined time from the moment of order opening.

Elementary trailing stop able to distinguish its "own" orders among others by comment and/or Magic number. It also distinguishes the financial instrument that needs to be trailed.

The Expert Advisor is based on the Williams Percent Range indicator. It sells in the overbought zone and buys in the oversold zone. Trailing Stop and operation timer are attached to it.

The Moving Average indicator values are used for trading.

This EA implements a grid strategy by placing buy and sell orders at the same time.

EA opens trades from support and resistance levels, which were set by a trader, and revolves them at another levels.

Close At Time is an EA that closes open positions or deletes pending orders or both. You can also specify how it should be closed – by symbol, magic number or ticket number.

The strategy of this EA is daily breakout which is compare previous high or low previous day candle then place a pending order for breakout.

This program is a basic version of the original code of relatively simple system Millenium.

This is a working singleton code example. A singleton object is created when there 'can be only one' of the object.

Copying utility with minimal functionality.

EA opens trades from support and resistance levels which were set by a trader.

This EA will help you to set Stop Loss and Take Profit.

The EA looks for trend using three MAs (period 200, 50, 25 or other) and opens orders using the Parabolic SAR indicator. There is martingale in an Expert Advisor, the lot is calculated in percents from a deposit depending on Stop Loss.

Instant execution button to close profit orders, close all orders, auto close by trailing parameter. Last update: 21 April 2016. Prev: 8 Dec 2015

A robust EA template to use with your entry conditions.

Easy EA for closing positions of the symbol with profit or loss. You can use it for hidden SL too.

An EA template to add a simple trailing stop to your strategy.

This an H1 strategy. This EA will execute at the new bar if the last bar has broken through the point that we set.

1...5678910111213141516171819...29