Open main menu

Returns a numerical value, indicating the number of bars since a complete exit from the specified position.

Usage

BarsSinceExit_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, BarsSinceExit_Checked will generate an error.

Example

Assign a value, indicating the number of bars since the last position has been closed, to Value1 variable:

Value1= BarsSinceExit_Checked (1);