거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
당사 팬 페이지에 가입하십시오
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
- 조회수:
- 14892
- 평가:
- 게시됨:
- 2016.03.22 07:49
- 업데이트됨:
- 2016.11.22 07:32
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Despite its size, this is an operational EA that can be efficient after minimum optimization.
Martingale functions can be added.
//-------------------------------------------------------------------- extern int stoploss = 50, takeprofit = 50; double Lot=1; int tip; //-------------------------------------------------------------------- int init() { OrderSend(Symbol(),OP_SELL,Lot,Bid,3,NormalizeDouble(Ask + stoploss*Point,Digits), NormalizeDouble(Bid - takeprofit*Point,Digits)," ",777,Blue); } //-------------------------------------------------------------------- int start() { for (int i=0; i<OrdersTotal(); i++){ if (OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==true){ if (OrderSymbol()==Symbol()){ tip = OrderType(); Lot = OrderLots();return;}}} if (Lot==0) return; if (tip==0) OrderSend(Symbol(),OP_SELL,Lot,Bid,3,NormalizeDouble(Ask + stoploss*Point,Digits), NormalizeDouble(Bid - takeprofit*Point,Digits)," ",777,Blue); if (tip==1) OrderSend(Symbol(),OP_BUY ,Lot,Ask,3,NormalizeDouble(Bid - stoploss*Point,Digits), NormalizeDouble(Ask + takeprofit*Point,Digits)," ",777,Blue); return(0); } //-----------------------------------------------------------------
Simple optimization results
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/9418

Simple display any time zone daily channel.

This is an indicator which totally based on RSI. The reason to amend this indicator is knowing the strength of a currency.

Commentary on behalf of Exponential Moving Average.

Script for converting a chart of the M1 timeframe into all other charts of the standard timeframes and recreating the M1 timeframe chart.