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

SetSellStopLimitOrder - MetaTrader 5용 스크립트

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

SetSellStopLimitOrder script is developed for placing a SellStopLimit order with fixed trigger levels, Stop Loss and Take Profit levels in points from the current price and order trigger prices. The main advantage of this script is its ability to fix a deal volume, which depends on the entire deposit size, using MM (Money Management) script input parameter. This script determines a ratio between the amount of funds involved in the deal and all the funds of the deposit.

The script input parameters:

//+----------------------------------------------+
//| INPUT PARAMETERS OF THE SCRIPT               |
//+----------------------------------------------+
input double  MM=0.1;       // Money Management
input uint  LEVEL1=300;     // Trigger level of the first Stop order in points from the current price
input uint  LEVEL2=300;     // Trigger level of the second Limit order in points from the trigger level of first order
input uint  STOPLOSS=300;   // Stop loss in points from the open price
input uint  TAKEPROFIT=800; // Take profit in points from the open price
input uint  EXPIRED=0;      // The duration of the order in hours (0 - without time of cancellation)
input uint  RTOTAL=4;       // The number of repeats on unsuccessful transactions
input uint  SLEEPTIME=1;    // Pause time in seconds between repeats

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

SetBuyStopLimitOrder SetBuyStopLimitOrder

The script is developed for placing a BuyStopLimit order with fixed trigger levels, Stop Loss and Take Profit levels in points from the current price and order trigger prices.

SetBuyLimitOrder SetBuyLimitOrder

The script is developed for placing a BuyLimit order with fixed trigger levels, Stop Loss and Take Profit levels in points from the current price.

EMDcotir (Empirical Mode Decomposition) EMDcotir (Empirical Mode Decomposition)

Empirical mode decomposition of the current symbol.

MA-Crossover_Alert MA-Crossover_Alert

The simplest semaphore indicator having alerts and providing the possibility to send signals to a mailbox.