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

Open two Market orders in opposite directions - MetaTrader 4용 스크립트

조회수:
17613
평가:
(12)
게시됨:
2018.03.12 10:38
업데이트됨:
2021.07.15 06:16
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

This simple script opens two Market orders in two opposite directions. The essence of this is when trading news, price often breaks out in one direction. So ideally executing this script shortly before the news release would imply that if a breakout occurs in one direction one of the market orders (the one in the wrong direction) will be closed by the price triggering the stop loss, while the order will be left open to accumulate profits.

It should be noted that this is not always this case, however the above example is just an illustration where one might require a script like this.

Whats more? This script is %100 compatible with ECN accounts that do not allow the stop levels alongside OrderSend function.


Inputs

input double   InpLots        = 0.01;                    //Size of the trade
input int      InpSL          = 150;                     //Stop loss in points 150 = 15 pips
input int      InpTP          = 300;                     //Take profit in points 300 = 30 pips
input int      InpRetries     = 10;                      //Retries in case of failed trades 
MA Cross Studies MA Cross Studies

Simple program using the moving average as bias and providing many trade and money management options.

Regular Expressions Tester MQL4 Regular Expressions Tester MQL4

The script allows you to try regular expressions in MetaTrader 4.

Identical candles Identical candles

This is the semaphore indicator of candles that highlights the candles on the chart, which have same direction like all candles for your chosen timeframes.

Limit orders Pro Limit orders Pro

This script provides quick work with a large number of pending orders in the market and contains functions for placing, changing, and deleting of orders within the your price range.