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

Simple Adviser EMA WMA RSI - MetaTrader 4용 expert

조회수:
24961
평가:
(5)
게시됨:
2010.04.19 08:06
업데이트됨:
2014.04.21 14:54
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Description:

Expert Advisor is fairly simple and with a little practice it can be modified even people not familiar with the programming.

An Expert Advisor opens the trade, based on the intersection of MA. Opening is filtered on the indicator RSI.

If RSI> 50 - allowed only Buy
If RSI <50 - allowed only Sell

Variables:
  • period_EMA = 28 - period EMA line
  • period_WMA = 8 - between lines WMA
  • period_RSI = 14 - period RSI indicator
  • stoploss = 0 - level set stop loss orders at the opening (if 0, then the stoploss is not exposed)
  • takeprofit = 500 - level set take profit at the opening of a warrant (if 0, then takeprofit not exposed)
  • risk = 10 - if Lot = 0, then the size of the Lot is calculated as% (risk) of free funds
  • Magic = 777 - the unique number of orders of the adviser, is used to make the adviser does not affect the order open hand or other advisers.
  • CloseCounter = false - if you set the parameter to true, the warrants will be closed at the opposite signal. Ie when opening Buy, Sell and close down all the way around.
  • Lot = 0.1 - lot may be installed either, but at zero lot will be calculated automatically.
  • TrailingStop, Tip.Fr.or.Candl - Used in advisor TrailingStop detail: http://codebase.mql4.com/en/code/9530




Tips:

If you place takeprofit = 0, then be sure to CloseCounter = true, otherwise the order simply did not close.

When installing the stoploss = 0, protective stop there, with the balance line in the tester is nice, but there is a risk of subsidence.

Three Indians Three Indians

Detection of a pattern "three Indians" on the basis of the ZigZag.

Simplest Hedging EA ever Simplest Hedging EA ever

This EA simply opens two opposing positions at the beginning of the first new bar it comes across. Both positions can win lose or draw. Works best in 5M timeframe and can be optimised using "Open prices only".

Fibonacci-based Moving Averages indicator Fibonacci-based Moving Averages indicator

This indicator is EMAs drawn by Fibonacci numbers.

HighLowLines HighLowLines

Shows you the value of the highest high, the lowest low and the average of both over the last x Bars (to be set in the input tab).