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

News Expert Advisor (no indicators) - MetaTrader 4용 expert

조회수:
31554
평가:
(21)
게시됨:
2011.11.09 06:10
업데이트됨:
2014.04.21 14:55
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Description:

EA trades on a large market movements, and does not uses any indicators.
The idea of the Expert Advisor is that stop orders are discrete-time moving at a given distance from the current price.

If the price is rather abruptly slid to one side, the EA simply does not have time to move the order and it becomes a market.

Further included trail orders.

extern int Stoploss = 10,        // ​​stoploss if 0 is not changed
           Takeprofit = 50,      // TakeProfit, if 0 is not changed
extern int TrailingStop = 10,    // length of Trail, if 0 no trail
extern int TrailingStart = 0,    // ​​when trail usede, for example, after reaching 40 n arrived
extern int StepTrall = 2         // Thrall step - move stop-loss is not closer than StepTrail
extern int NoLoss = 0,           // ​​transfer to breakeven for a given number ve points of profit, if then there is no move to breakeven
           MinProfitNoLoss = 0,  // ​​minimum earnings when move to break-even level
extern int Magic = 77            // Magic
extern int Step = 10,            // distance from the price
extern double Lot = 0.1;
extern int TimeModify = 30       // number of seconds before a order is not allowed to change
extern int slippage = 30         // The maximum deviation of the price for market orders (orders to buy or sell).

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

Universal configurable EA with include indicators inside. Universal configurable EA with include indicators inside.

This is my own best EA, in the main lines can be setted up many things.

Simple Scalping EA Simple Scalping EA

Very simple scalping EA, no Indicators. Logic is based on very fast price movements.

exp_Lego_4 (Beta) exp_Lego_4 (Beta)

One more step to perfect.

psar bug 7 psar bug 7

Opens and closes orders using parabolic sar signals.