Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Scripts

The scripts for opening short positions - script for MetaTrader 5

Views:
12045
Rating:
(43)
Published:
2013.03.13 09:51
Updated:
2016.11.22 07:32
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

These scripts are designed to sell with fixed values of Stop Loss and Take Profit in points from the current price. There are four variants of scripts which can be divided into two groups:

  1. Scripts for brokers which have nonzero spread and admit the ability to set Stop Loss and Take Profit simultaneously performing a deal;
  2. Scripts for brokers which may have zero spread, otherwise, it is not recommended to set Stop Loss and Take Profit simultaneously opening a position. At first, these scripts open positions without orders, and then modify them changing Stop Loss and Take Profit.

The first group scripts are OpenSellPosition.mq5 and OpenSellPosition_X.mq5. The second group of scripts have the ending in the name of the ECN files. They are OpenSellPosition_ECN.mq5 and OpenSellPosition_X_ECN.mq5.

All scripts are designed to sell with fixed values of Stop Loss and Take Profit in points from the current price.

The main advantage of OpenSellPosition and OpenSellPosition_ECN scripts is the ability to fix deal's volume depending on the size of the whole deposit using the MM (Money Management) script input parameter which defines equity volume rate participated in a deal to the whole deposit equity:

OpenSellPosition and OpenSellPosition_ECN scripts input parameters:

//+----------------------------------------------+
//| SCRIPT INPUT PARAMETERS                      |
//+----------------------------------------------+
input double  MM=0.1;       // Money Management
input int  DEVIATION=10;    // Price deviation
input int  STOPLOSS=300;    // Stop Loss in points from the current price
input int  TAKEPROFIT=800;  // Take Profit in points from the current price
input uint RTOTAL=4;        // The number of retries in unsuccessful deals
input uint SLEEPTIME=1;     // Pause time between retries in seconds

The main advantage of OpenSellPosition_X and OpenSellPosition_X_ECN scripts is the ability to fix deals' losses when Stop Loss triggered depending on the whole deposit size using LossMM script input parameter which defines equity volume rate lost when Stop Loss triggered to the whole deposit equity:

OpenSellPosition_X and OpenSellPosition_X_ECN scripts input parameters:

//+----------------------------------------------+
//| SCRIPT INPUT PARAMETERS                      |
//+----------------------------------------------+
input double  LossMM=0.1;   // Losses from balance when Stop Loss triggered
input uint DEVIATION=10;    // Price deviation
input uint STOPLOSS=300;    // Stop Loss in points from the current price
input uint TAKEPROFIT=800;  // Take Profit in points from the current price
input uint RTOTAL=4;        // The number of retries in unsuccessful deals
input uint SLEEPTIME=1;     // Pause time between retries in seconds

Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/1575

The scripts for opening long positions The scripts for opening long positions

These scripts are designed to buy with fixed values of Stop Loss and Take Profit in points from the current price

MinPriceChange MinPriceChange

The indicator of the minimum sum of price changes which forms signals after flat movements and before potential breakthrough in this or that side

TrendStrength TrendStrength

The indicator to define the global trend.

SmPriceBend-T01 SmPriceBend-T01

The indicator of the first price change derivative or simply trend speed and sign.