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

exp_Amstell - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
2267
평가:
(15)
게시됨:
2018.06.16 10:25
업데이트됨:
2018.06.16 10:25
exp_Amstell.mq5 (20.62 KB) 조회
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Idea by: Iurii Tokman.

MQL5 code by: Vladimir Karputov.


EA operation algorithm

At the first start, open a BUY position with the volume of Lots. Then monitor (in OnTradeTransaction) all opening positions and remember (separately for BUY and SELL positions) the opening prices:

  • If the price of the last opening a BUY position is ABOVE the current Ask price by Step - open a new BUY position;
  • If the price of the last opening a SELL position is BELOW the current Bid price by Step - open a new SELL position.

The virtual Take Profit is monitored, too: As soon as the position profit reaches or exceeds Virtual Take Profit, close the position by market.


Inputs

  • Lots - the volume of the position to be opened;
  • Virtual Take Profit (in pips) - virtual Take Profit;
  • Step (in pips) - the minimum step between the last position price;
  • magic number - unique identifier for the EA.

exp_Amstell

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

Exp_Sar_Tm_Plus Exp_Sar_Tm_Plus

A trading system based on indicator signals Parabolic Stop and Reverse system with the possibility to set a fixed position holding time.

EA Moving Average EA Moving Average

The EA is based on Moving Average.mq5 from standard delivery. Working with OnTradeTransaction to get the price of the last closed position.

TwoBarsComparison TwoBarsComparison

The EA compares the opening prices of the zeroth and the second bar. It moves positions to a breakeven and/or enables trailing.

e_Breakeven_v4 e_Breakeven_v4

An assistant Expert Advisor. It moves positions to a breakeven and then enables trailing.