PositionProfit
From MultiCharts
Returns a numerical value, indicating the total realized profit or loss for the specified closed position.
Usage
PositionProfit(PosBack)
Where:
- PosBack - a numerical expression, specifying the closed position:
- 0 - current position;
- 1 - one position back (the last position closed);
- 2 - two positions back, etc.
PositionProfit with PosBack unspecified equals PositionProfit(0).
In order to return the current unrealized profit or loss of an open position please use OpenPositionProfit keyword.
Notes
- This function can only be used in signals.
Example
PositionProfit(1)
Returns a value of -5 if the most recently closed position has generated $5 loss.
PositionProfit(0)
Returns a value of 0 if the position is open and there were no partial exits from it.
PositionProfit(0)
Returns a value of 5 if the position was partially closed with $5 profit.
PositionProfit(0)
Returns a value of 0 if there is no open position.