ExitPrice Checked

From MultiCharts
Jump to navigation Jump to search

Returns a numerical value, indicating the price at a complete exit from the specified position.

Usage

ExitPrice_Checked(PosBack)

Where:

PosBack - a numerical expression, specifying the position:
0 - open position;
1 - one position back (the last position closed);
2 - two positions back, etc.

Notes

  1. This function can only be used in signals.
  2. If PosBack value is greater that the real number of previously opened positions, ExitPrice_Checked will generate an error.

Example

Assign a value, indicating the exit price of the most recently closed position, to Value1 variable:

 Value1=ExitPrice_Checked(1);