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

Modify SL and/or TP - MetaTrader 5용 스크립트

[삭제]
조회수:
17831
평가:
(34)
게시됨:
2020.07.03 22:56
업데이트됨:
2020.08.20 12:03
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

I used to suffer from unnecessary losses and/or cutting my profit short since I wasn't fast enough to modify my SL and/or TP. That is why I've wrote these scripts that will allow me to react fast when I must modify my Sl and/or TP especially when I have many open and/or pending trades. I know there are plenty of Metatraders who also suffer from this and that is why I would like to share these scripts with you, hopefully it will be beneficial.

Do not forget to send you comments as well as rate these scripts. Happy trading!


These 3 MQL5 scripts will help you to immediately react to your open positions and pending orders. Below is an example on how to modify the SL of 4 Buy limit orders in one step.


  • SCT_EditSLTP_BuySellLimitOrders is the script that will help you modify the SL and/or TP all your Buy and/or Sell limit orders, below are the input values that you need to insert and the script will take care of everything.

    • input double   SL_BuyLimitOrder;
    • input double   TP_BuyLimitOrder;
    • input double   SL_SellLimitOrder;
    • input double   TP_SellLimitOrder;
  • SCT_EditSLTP_BuySellStopOrders is the script that will help you modify the SL and/or TP all your Buy and/or Sell stop orders, below are the input values that you need to insert and the script will take care of everything.

    • input double   SL_BuyStopOrder;
    • input double   TP_BuyStopOrder;
    • input double   SL_SellStopOrder;
    • input double   TP_SellStopOrder;
  • SCT_EditSLTP_BuySellPositions is the script that will help you modify the SL and/or TP all your Buy and/or Sell positions, below are the input values that you need to insert and the script will take care of everything.

    • input double   SL_BuyPosition;
    • input double   TP_BuyPosition;
    • input double   SL_SellPosition;
    • input double   TP_SellPosition;


Programming patterns - Facade Programming patterns - Facade

Provide a unified interface to a set of interfaces in a subsystem.

Profit and Losses represented in Pips Profit and Losses represented in Pips

Simple script to see your current Profit Losses in Pips.

ComeBacker Trading ComeBacker Trading

short-term forex strategy for beginners.

Design patterns - Twin Design patterns - Twin

Modeling multiple inheritance with the Twin pattern.