+1 888 340 6572

PosTradeCommission: Difference between revisions

From MultiCharts
(Created page with "Returns an absolute numerical value, indicating the commission amount spent for the specified trade. ==== Usage ==== <syntaxhighlight>PosTradeCommission(PosAgo,TradeNumber)...")
 
No edit summary
Line 1: Line 1:
Returns an absolute numerical value, indicating the commission amount spent for the specified trade.  
Returns an absolute numerical value, indicating the commission and slippage amount spent for the specified trade.  
   
   
==== Usage ====
== Usage ==
<syntaxhighlight>PosTradeCommission(PosAgo,TradeNumber)</syntaxhighlight>  
<syntaxhighlight>PosTradeCommission(PosAgo, TradeNumber)</syntaxhighlight>  


Where: [[PosAgo]] - a numerical expression, specifying the position:  
Where:  


[[0]] - open position;
'''PosAgo''' - a numerical expression, specifying the position:


[[1]] - one position back (the last position closed);  
'''0''' - open position;  


[[2]] - two positions back, etc.
'''1''' - one position back (the last position closed);


[[TradeNumber]] - a numerical expression, specifying the number of trade (zero-based).  
'''2''' - two positions back, etc.
 
'''TradeNumber''' - a numerical expression, specifying the number of trade (zero-based).  
   
   
==== Notes ====  
== Notes ==  
This function can only be used in signals.  
This function can only be used in signals.  


To retrieve the total number of trades in specified position use [[PosTradeCount]]  
To retrieve the total number of trades in specified position use [[PosTradeCount]].
   
   
==== Example ====
== Example 1 ==  
<syntaxhighlight>PosTradeCommission(0,1) will return a value of 5 for the second trade of the open position, if the  
 
commission for this trade is 5 dollars.</syntaxhighlight>
<syntaxhighlight>
PosTradeCommission(0, 1);
</syntaxhighlight>
 
Will return a value of 5 for the second trade of the open position, if the commission and slippage for this trade is 5 dollars.
   
   
== Example 2 ==
<syntaxhighlight>
if BarsSinceExit(1) = 1 then begin
  for value2 = 0 to (PosTradeCount(1) - 1) begin
 
      Print("Commission: ", commission, Spaces(3),
        "PosSize: ", PosTradeSize(1, value2), Spaces(3),
        "Slippage: ", Slippage, Spaces(3),
        "Commission: ", PosTradeCommission(1, value2));
 
  end;
end;
</syntaxhighlight>
Returns the following:
<syntaxhighlight>
Commission:    2.20  PosSize:    3.00  Slippage:    5.00  Commission:  21.60
</syntaxhighlight>
[[Category:Strategy Position Trades]]
[[Category:Strategy Position Trades]]

Revision as of 12:49, 27 January 2012

Returns an absolute numerical value, indicating the commission and slippage amount spent for the specified trade.

Usage

PosTradeCommission(PosAgo, TradeNumber)

Where:

PosAgo - a numerical expression, specifying the position:

0 - open position;

1 - one position back (the last position closed);

2 - two positions back, etc.

TradeNumber - a numerical expression, specifying the number of trade (zero-based).

Notes

This function can only be used in signals.

To retrieve the total number of trades in specified position use PosTradeCount.

Example 1

PosTradeCommission(0, 1);

Will return a value of 5 for the second trade of the open position, if the commission and slippage for this trade is 5 dollars.

Example 2

if BarsSinceExit(1) = 1 then begin

   for value2 = 0 to (PosTradeCount(1) - 1) begin
   
      Print("Commission: ", commission, Spaces(3),
         "PosSize: ", PosTradeSize(1, value2), Spaces(3),
         "Slippage: ", Slippage, Spaces(3),
         "Commission: ", PosTradeCommission(1, value2));
   
   end;

end;

Returns the following:

Commission:    2.20   PosSize:    3.00   Slippage:    5.00   Commission:   21.60