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

Millenium Code - MetaTrader 4용 expert

조회수:
13973
평가:
(16)
게시됨:
2015.11.20 10:42
업데이트됨:
2016.11.22 07:32
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Real author:

Tomas Hruby in cooperation with Parbest company.

This program is a simpler version of the original code of relatively simple system Millenium, which in the summer of 2014 earned on real account 54%. I decided to make available this Code Base release (without some paid functions) for free.

The system is based on opening of only one trade per day. Last year, the system was running on a real account, where he produced nice results throughout the year, 2014. But currently I do not use it for its high degree of volatility. The basic principle is to open one order per day. The main indicator is the crossover of moving averages verifying the current price, which must be above or below the moving average. The condition is that always the lowest or highest price of the last X bars must be at the opposite side of the direction of the new signal order type. As you can see on the screenshot below, the BUY order was opened when lowest price of 20 last bars was below both Moving averages, Fast MA crosses Slow MA and current price is higher than Fast and Slow MA.

Information:

  • Millenium Code is only part of original Millenium Expert Advisor.
  • It is very good to use optimization and disable trading at some days of the week.
  • Millenium can be also combined with different settings of many trading days (just try to find settings for Monday, then for Friday and then combine them together).
  • If you are looking for Trailing SL and TP with money management and reopening of orders please search for Millenium in the Market.

Order example:

if(yFastMAprice<ySlowMAprice && FastMAprice>SlowMAprice && Ask>SlowMAprice && Ask>FastMAprice && pL1<SlowMAprice && pL1<FastMAprice)
  {
   if(ReverseSignal)
     {
      dirToday=OP_SELL;
     }
   else
     {
      dirToday=OP_BUY;
     }
  }

And finally, do not miss the news and watch our MQL5 wall: https://www.mql5.com/en/users/tomac1

Singleton Example Singleton Example

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

Simple Copier Simple Copier

Copying utility with minimal functionality.

Cidomo_v.1 Cidomo_v.1

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.

Close At Time Close At Time

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.