ExitPrice Checked

From MultiCharts
Revision as of 16:13, 14 May 2012 by Roman MultiCharts (talk | contribs) (Created page with "Returns a numerical value, indicating the price at a complete exit from the specified position. ==Usage== <syntaxhighlight>ExitPrice_Checked(PosBack) </syntaxhighlight> Whe...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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);