Difference between revisions of "BarsSinceExit Checked"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns a numerical value, indicating the number of bars since a complete exit from the specified position. == Usage == <syntaxhighlight>BarsSinceExit_Checked(PosBack)</syn...")
 
(No difference)

Latest revision as of 15:59, 14 May 2012

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);