First Version
An additional Indicator. It shows closed deals on the chart and current account statistics.
It shows current account statistics and green labels for long positions, red for short positions and grey for close points.
Also it draws a lines for deals from open to close with color depending on the position result (green for profitable trades and red for losses)
I am using it to prepare trade reports. It is very useful for analysis, because it shows the trade results in a very useful form.
The code has comments.
After its delete from the chart it deletes all of the objects which has been created by indicator.
An indicator has several parameters:
An additional Indicator. It shows closed deals on the chart and current account statistics.
It shows current account statistics and green labels for long positions, red for short positions and grey for close points.
Also it draws a lines for deals from open to close with color depending on the position result (green for profitable trades and red for losses)
I am using it to prepare trade reports. It is very useful for analysis, because it shows the trade results in a very useful form.
The code has comments.
After its delete from the chart it deletes all of the objects which has been created by indicator.
An indicator has several parameters:
- DealMarkers = True; // Show deals
- DepoStats = True; // Show statistics
- clAccName = Silver; // Account name color
- clInfData = Gray; // Account Information color
- FontSize = 8; // Font size
- LeadingSpase = 9; // Spaces for alignment
- clLineProfit = Lime; // Color for profitable deals
- clLineLoss = Red; // Color for deals with losses
- clMarkerBuy = Lime; // Color for buy label
- clMarkerSell = Red; // Color for sell label
- clMarkerClose = Silver; // Color for close label