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

Reconstruction of positions - script for MetaTrader 5

Views:
3859
Rating:
(28)
Published:
2017.03.02 09:54
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

Reconstruction of positions — an example of working with a trading history on Hedge accounts.

An example of the final output:

position #0
DEAL_ENTRY_IN, type DEAL_TYPE_BUY, price 1.04552, Deal EURUSD, volume 0.03, DEAL_POSITION_ID #119707903, profit 0.00
DEAL_ENTRY_OUT_BY, type DEAL_TYPE_SELL, price 1.04562, Deal EURUSD, volume 0.02, DEAL_POSITION_ID #119707903, profit 0.20
DEAL_ENTRY_OUT_BY, type DEAL_TYPE_SELL, price 1.04534, Deal EURUSD, volume 0.01, DEAL_POSITION_ID #119707903, profit -0.18
position #1
DEAL_ENTRY_IN, type DEAL_TYPE_SELL, price 1.04562, Deal EURUSD, volume 0.02, DEAL_POSITION_ID #119708383, profit 0.00
DEAL_ENTRY_OUT_BY, type DEAL_TYPE_BUY, price 1.04552, Deal EURUSD, volume 0.02, DEAL_POSITION_ID #119708383, profit 0.00
position #2
DEAL_ENTRY_IN, type DEAL_TYPE_SELL, price 1.04534, Deal EURUSD, volume 0.05, DEAL_POSITION_ID #119708643, profit 0.00
DEAL_ENTRY_OUT_BY, type DEAL_TYPE_BUY, price 1.04552, Deal EURUSD, volume 0.01, DEAL_POSITION_ID #119708643, profit 0.00
DEAL_ENTRY_OUT, type DEAL_TYPE_BUY, price 1.04524, Deal EURUSD, volume 0.04, DEAL_POSITION_ID #119708643, profit 0.40

As can be seen, deals taken from the trading history are grouped into positions to which they relate. Grouping by parameter

DEAL_POSITION_ID

The ID of the position, which the deal opened, modified or closed. Each position has a unique ID that is assigned to all deals executed on the symbol during the position lifetime.

long



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

BIG DOG BIG DOG

The EA places pending stop orders BUY_STOP and SELL_STOP.

Autotrade Autotrade

The Expert Advisor places two pending orders (BuyStop and SellStop) with the specified expiration.

TrailingStop TrailingStop

An example of an Expert Advisor with a Trailing Stop implementation.

AIS1 AIS1

The EA works based on the analysis of Open, High and Low.