Difference between revisions of "ExitName"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns the name of the order which closed the position. ==== Usage ==== <syntaxhighlight>ExitName(TradeNumber)</syntaxhighlight> Where: TradeNumber - a numerical exp...")
 
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
Returns the name of the order which closed the position.  
 
Returns the name of the order which closed the position.  
 
   
 
   
==== Usage ====
+
== Usage ==
<syntaxhighlight>ExitName(TradeNumber)</syntaxhighlight>  
+
<syntaxhighlight>ExitName(PosBack)</syntaxhighlight>  
  
Where: [[TradeNumber]] - a numerical expression, specifying the number of trade (zero-based).
+
Where:  
 
==== Notes ====
 
Same as [[PosTradeExitName(0,TradeNumber).]]
 
 
==== Example ====
 
  
 +
: <code>PosBack</code> - a numerical expression, specifying the number of trade (zero-based).
 +
: 0 - open position;
 +
: 1 - one position back (the last position closed);
 +
: 2 - two positions back, etc.
  
[[Category:Strategy Position Trades]]
+
== Notes ==
 +
 
 +
If <code>PosBack</code> is not specified, a value for the open position will be returned.
 +
 
 +
== Example ==
 +
<syntaxhighlight>
 +
ExitName(1);</syntaxhighlight>
 +
will return a value of "sell LX" for the last closed position, if this position was closed by the order with "sell LX" name.
 +
 
 +
[[Category:Strategy Position]]

Latest revision as of 13:39, 24 February 2012

Returns the name of the order which closed the position.

Usage

ExitName(PosBack)

Where:

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

Notes

If PosBack is not specified, a value for the open position will be returned.

Example

ExitName(1);

will return a value of "sell LX" for the last closed position, if this position was closed by the order with "sell LX" name.