MAmericanExchangeOption





http://www.QuantTools.com
CapeTools Exotic Analysis function list

Welcome | Documentation format | QuantTools Groups | QuantTools Categories | Licence

Key TAGs | Excel Index | API Index



Option to exchange one asset for another.

This function utilizes an analytical (closed-form) algorithm.

Note that the risk (greek) numbers produced are the mathematically defined equivalent of a derivative (instantaneous change).

You can convert the risk number to your own definition of risk by multiplying by the shift you require.

For example, for a typical definition of VANNA, (change in underlying and volatility), where one defines the change in the underlying as a single unit of change (1.0) and the change in volatility as a one percent change (0.01), simply multiply the VANNA result calculated by (1.0*0.01).

For VEGA, change in volatility of one percent (0.01), simply multiply the VEGA result by 0.01. Within option contracts THETA is negative, however the mathematically defined equivalent of THETA (instantaneous FORWARD change in time) is positive.

Internally we have negated this value for you.

To express THETA as THETA per day, simply multiply the THETA result by 1/365 or 1/252 (depending on whether you require calendar days or business days).

This function prices a portfolio of equity, commodities, futures or FX option deals from raw inputs.

All memory is discarded once the computation is finished.

You can request for all first and second order risk statistics simply by filling in the greek field with the name of the parameter.

The name of the parameter must be proceeded with the character 'd'. Thus if 'Stock', 'Time' and 'Vol' are the names of three parameters which represent underlying price, Option Maturity and option volatility respectively, you can request DELTA as 'dStock', GAMMA as 'dStockdStock' (dStock twice), VEGA as 'dVol', THETA as 'dTime', VOLGA as 'dVoldVol' (dVol twice) and VANNA (cross-derivative) as 'dStockdVol' or 'dVoldStock'. You can also, if you wish request 'dTimedVol' (second derivative with respect to Time and Vol).

If you wish to view all the second order derivatives within a matrix, please refer to the CapeTools Derivative Matrix category of functions.

This logic can be applied to any parameter which is of a double-valued type (decimal value).

The risk statistics are the partial derivatives with respect to the option price, thus you can scale the results by multiplying by a factor.

For example, to compute the VEGA for a one percent change in volatility (0.01), simply multiply the VEGA result by 0.01. To compute THETA for a one day change (1/365), multiply the THETA result by 1/365. To compute the DELTA for a one-unit change (1), multiply the delta by 1 which is, of course the same result as the original delta.

For second order risks, simply multiply by the product of the changes.



Note: Within Excel, the function is named - CT.MAmericanExchangeOption




High level graphic of MAmericanExchangeOption() function with parameters. Blue square node is the actual function with the parameters ordered.



Parameter Description


  1. ValueDate parameter

    Valuation Date (typically equal to Today's date)
  2. dayCounter parameter

    For any input parameter within this function that represents a dividend rate, risk free rate, foreign rate or holding cost rate, these rates will be defined as annually compounded using the DayCounter defined within this parameter. Thus if 'actual365' is used for this 'dayCounter' parameter, then all input parameters that represent a dividend, risk free, foreign or holding cost rates will be defined as annually compounded Actual365 rates.
  3. Units parameter

    Number of option contracts you wish to trade in (positive value).
  4. Position parameter

    Whether you are long or short the option.
  5. Level parameter

    Whether you would like to view the PV for the entire structure/portfolio 'TOTAL'. Whether you would like to view the PV for each option 'CASHFLOW'. Or whether you would like to view the PV and extended information, 'ALL'. Thus valid values are - 'TOTAL', 'CASHFLOW' or 'ALL'.
  6. Underlying1 parameter

    Price of the first underlying
  7. Underlying2 parameter

    Price of the second underlying
  8. Quantity1 parameter

    Quantity of the first underlying.
  9. Quantity2 parameter

    Quantity of the second underlying.
  10. Time parameter

    Expiration date of the option.
  11. Rate parameter

    For the underlying (equity, futures, FX or commodity), this should be an annualised rate (risk free rate or foreign rate). If this is an option on a FX underlying, then if the underlying is quoted as domestic/foreign then this rate will be the domestic rate. If, however, the FX underlying is quoted as foreign/domestic then this will be the foreign rate.
  12. b1 parameter

    For the first underlying (equity, futures, FX or commodity), this should be an annualised rate (dividend rate, risk free rate, foreign rate or holding cost rate respectively). If this is an option on a FX underlying, then if the underlying is quoted as domestic/foreign then this rate will be the foreign rate. If, however, the FX underlying is quoted as foreign/domestic then this will be the domestic rate.
  13. b2 parameter

    For the second underlying (equity, futures, FX or commodity), this should be an annualised rate (dividend rate, risk free rate, foreign rate or holding cost rate respectively). If this is an option on a FX underlying, then if the underlying is quoted as domestic/foreign then this rate will be the foreign rate. If, however, the FX underlying is quoted as foreign/domestic then this will be the domestic rate.
  14. Vol1 parameter

    Volatility of the underlying Price1.
  15. Vol2 parameter

    Volatility of the underlying Price2.
  16. Rho parameter

    Correlation between the two assets.
  17. Greek parameter

    For the option premium specify 'PREMIUM'. For all first derivatives, you can specify one of the following : 'dUnderlying1' (for the 'Underlying1' parameter), 'dUnderlying2' (for the 'Underlying2' parameter), 'dQuantity1' (for the 'Quantity1' parameter), 'dQuantity2' (for the 'Quantity2' parameter), 'dTime' (for the 'Time' parameter), 'dRate' (for the 'Rate' parameter), 'db1' (for the 'b1' parameter), 'db2' (for the 'b2' parameter), 'dVol1' (for the 'Vol1' parameter), 'dVol2' (for the 'Vol2' parameter), 'dRho' (for the 'Rho' parameter), For second order derivatives, you can specify combinations of the first order derivatives (i.e. - 'dUnderlying1dUnderlying1', 'dVol1dVol1', 'dUnderlying1dVol1'. )


Extended information

Function Syntax

VB Syntax


Variant CTExoticAnalysis.MAmericanExchangeOption( _
Long ValueDate, _
DayCountEnum dayCounter, _
Variant Units, _
Variant Position, _
String Level, _
Variant Underlying1, _
Variant Underlying2, _
Variant Quantity1, _
Variant Quantity2, _
Variant Time, _
Variant Rate, _
Variant b1, _
Variant b2, _
Variant Vol1, _
Variant Vol2, _
Variant Rho, _
String Greek)


Excel Spreadsheet Syntax


=CT.MAmericanExchangeOption(
Excel Numeric Cell ValueDate,
Excel String Cell dayCounter,
XLRange Units,
XLRange Position,
Excel String Cell Level,
XLRange Underlying1,
XLRange Underlying2,
XLRange Quantity1,
XLRange Quantity2,
XLRange Time,
XLRange Rate,
XLRange b1,
XLRange b2,
XLRange Vol1,
XLRange Vol2,
XLRange Rho,
Excel String Cell Greek)


C++ Syntax


static CTRangeDataCPP MAmericanExchangeOption(
long ValueDate,
DayCountEnum dayCounter,
CTRangeDataCPP Units,
CTRangeDataCPP Position,
std::string Level,
CTRangeDataCPP Underlying1,
CTRangeDataCPP Underlying2,
CTRangeDataCPP Quantity1,
CTRangeDataCPP Quantity2,
CTRangeDataCPP Time,
CTRangeDataCPP Rate,
CTRangeDataCPP b1,
CTRangeDataCPP b2,
CTRangeDataCPP Vol1,
CTRangeDataCPP Vol2,
CTRangeDataCPP Rho,
std::string Greek);


DotNET Syntax


CTRangeData CTExoticAnalysisSA.MAmericanExchangeOption(
System.Int32 ValueDate,
CTIEnums.DayCountEnum dayCounter,
CTRangeData Units,
CTRangeData Position,
System.String Level,
CTRangeData Underlying1,
CTRangeData Underlying2,
CTRangeData Quantity1,
CTRangeData Quantity2,
CTRangeData Time,
CTRangeData Rate,
CTRangeData b1,
CTRangeData b2,
CTRangeData Vol1,
CTRangeData Vol2,
CTRangeData Rho,
System.String Greek);

Parameter data types

ArgNameArgTypeIsKey
ValueDateLongFALSE
dayCounterDayCountEnumFALSE
UnitsRangeFALSE
PositionRangeFALSE
LevelStringFALSE
Underlying1RangeFALSE
Underlying2RangeFALSE
Quantity1RangeFALSE
Quantity2RangeFALSE
TimeRangeFALSE
RateRangeFALSE
b1RangeFALSE
b2RangeFALSE
Vol1RangeFALSE
Vol2RangeFALSE
RhoRangeFALSE
GreekStringFALSE


Example Inputs

The first column represents the name of the parameters. The second column specifies whether the parameters are optional or not. Finally the last column provides some sample input data.
Function call input string-keys are always in the format : "NAME.EXTTAG.TICKER" The "EXTTAG.TICKER" part is determined from the output of other, capetools, object creation functions.


ArgNameIsOptional (Excel only)Example
ValueDateFALSE19/Jul/2005 (serial date type)
dayCounterFALSEACT365
UnitsFALSEMAmericanExchangeOption_Units_Range (creates a range object)
PositionFALSEMAmericanExchangeOption_Position_Range (creates a range object)
LevelFALSEALL
Underlying1FALSEMAmericanExchangeOption_Underlying1_Range (creates a range object)
Underlying2FALSEMAmericanExchangeOption_Underlying2_Range (creates a range object)
Quantity1FALSEMAmericanExchangeOption_Quantity1_Range (creates a range object)
Quantity2FALSEMAmericanExchangeOption_Quantity2_Range (creates a range object)
TimeFALSEMAmericanExchangeOption_Time_Range (creates a range object)
RateFALSEMAmericanExchangeOption_Rate_Range (creates a range object)
b1FALSEMAmericanExchangeOption_b1_Range (creates a range object)
b2FALSEMAmericanExchangeOption_b2_Range (creates a range object)
Vol1FALSEMAmericanExchangeOption_Vol1_Range (creates a range object)
Vol2FALSEMAmericanExchangeOption_Vol2_Range (creates a range object)
RhoFALSEMAmericanExchangeOption_Rho_Range (creates a range object)
GreekFALSEPREMIUM


Example range for parameter : Units

Within Excel, a range such as this can be passed directly into the Units parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Units



CTQL.CTRangeData MAmericanExchangeOption_Units;


int[] arrBMAmericanExchangeOption_Units = {
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1  //  Array Data

};

CTQL.IntVector arrMAmericanExchangeOption_Units =
new  CTQL.IntVector(arrBMAmericanExchangeOption_Units);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Units = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Units, false);


Example range for parameter : Position

Within Excel, a range such as this can be passed directly into the Position parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Position



CTQL.CTRangeData MAmericanExchangeOption_Position;


string[] arrBMAmericanExchangeOption_Position = {
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG",
"LONG"  //  Array Data

};

CTQL.StringVector arrMAmericanExchangeOption_Position =
new  CTQL.StringVector(arrBMAmericanExchangeOption_Position);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Position = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Position, false);


Example range for parameter : Underlying1

Within Excel, a range such as this can be passed directly into the Underlying1 parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Underlying1



CTQL.CTRangeData MAmericanExchangeOption_Underlying1;


int[] arrBMAmericanExchangeOption_Underlying1 = {
104,
102,
101,
91,
91,
102,
100,
103,
95,
93,
102,
97,
99,
92,
98,
98,
96,
108,
100,
101  //  Array Data

};

CTQL.IntVector arrMAmericanExchangeOption_Underlying1 =
new  CTQL.IntVector(arrBMAmericanExchangeOption_Underlying1);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Underlying1 = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Underlying1, false);


Example range for parameter : Underlying2

Within Excel, a range such as this can be passed directly into the Underlying2 parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Underlying2



CTQL.CTRangeData MAmericanExchangeOption_Underlying2;


int[] arrBMAmericanExchangeOption_Underlying2 = {
105,
105,
94,
101,
109,
95,
102,
105,
96,
98,
105,
113,
95,
99,
110,
100,
114,
112,
105,
104  //  Array Data

};

CTQL.IntVector arrMAmericanExchangeOption_Underlying2 =
new  CTQL.IntVector(arrBMAmericanExchangeOption_Underlying2);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Underlying2 = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Underlying2, false);


Example range for parameter : Quantity1

Within Excel, a range such as this can be passed directly into the Quantity1 parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Quantity1



CTQL.CTRangeData MAmericanExchangeOption_Quantity1;


int[] arrBMAmericanExchangeOption_Quantity1 = {
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1  //  Array Data

};

CTQL.IntVector arrMAmericanExchangeOption_Quantity1 =
new  CTQL.IntVector(arrBMAmericanExchangeOption_Quantity1);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Quantity1 = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Quantity1, false);


Example range for parameter : Quantity2

Within Excel, a range such as this can be passed directly into the Quantity2 parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Quantity2



CTQL.CTRangeData MAmericanExchangeOption_Quantity2;


int[] arrBMAmericanExchangeOption_Quantity2 = {
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1  //  Array Data

};

CTQL.IntVector arrMAmericanExchangeOption_Quantity2 =
new  CTQL.IntVector(arrBMAmericanExchangeOption_Quantity2);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Quantity2 = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Quantity2, false);


Example range for parameter : Time

Within Excel, a range such as this can be passed directly into the Time parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Time



CTQL.CTRangeData MAmericanExchangeOption_Time;


int[] arrBMAmericanExchangeOption_Time = {
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy"),
CTQL.Date.serialNumber("17/1/2006", "dd/mm/yyyy")  //  Array Data

};

CTQL.IntVector arrMAmericanExchangeOption_Time =
new  CTQL.IntVector(arrBMAmericanExchangeOption_Time);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Time = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Time, false);


Example range for parameter : Rate

Within Excel, a range such as this can be passed directly into the Rate parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Rate



CTQL.CTRangeData MAmericanExchangeOption_Rate;


double[] arrBMAmericanExchangeOption_Rate = {
0.0987,
0.109,
0.105,
0.105,
0.0948,
0.0952,
0.1081,
0.0958,
0.1076,
0.1063,
0.0912,
0.102,
0.1069,
0.0993,
0.1047,
0.1092,
0.1076,
0.0957,
0.1054,
0.1  //  Array Data

};

CTQL.DoubleVector arrMAmericanExchangeOption_Rate =
new  CTQL.DoubleVector(arrBMAmericanExchangeOption_Rate);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Rate = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Rate, false);


Example range for parameter : b1

Within Excel, a range such as this can be passed directly into the b1 parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : b1



CTQL.CTRangeData MAmericanExchangeOption_b1;


double[] arrBMAmericanExchangeOption_b1 = {
0.0202,
0.018,
0.0186,
0.0198,
0.0212,
0.0206,
0.019,
0.0187,
0.0209,
0.0216,
0.0214,
0.0207,
0.0202,
0.02,
0.0218,
0.0218,
0.0189,
0.0193,
0.0188,
0.02  //  Array Data

};

CTQL.DoubleVector arrMAmericanExchangeOption_b1 =
new  CTQL.DoubleVector(arrBMAmericanExchangeOption_b1);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_b1 = new  CTQL.CTRangeData(arrMAmericanExchangeOption_b1, false);


Example range for parameter : b2

Within Excel, a range such as this can be passed directly into the b2 parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : b2



CTQL.CTRangeData MAmericanExchangeOption_b2;


double[] arrBMAmericanExchangeOption_b2 = {
0.0402,
0.0419,
0.0365,
0.0369,
0.0367,
0.0381,
0.0369,
0.0389,
0.0388,
0.0414,
0.0406,
0.0373,
0.0419,
0.0399,
0.0398,
0.0416,
0.0414,
0.0377,
0.0428,
0.04  //  Array Data

};

CTQL.DoubleVector arrMAmericanExchangeOption_b2 =
new  CTQL.DoubleVector(arrBMAmericanExchangeOption_b2);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_b2 = new  CTQL.CTRangeData(arrMAmericanExchangeOption_b2, false);


Example range for parameter : Vol1

Within Excel, a range such as this can be passed directly into the Vol1 parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Vol1



CTQL.CTRangeData MAmericanExchangeOption_Vol1;


double[] arrBMAmericanExchangeOption_Vol1 = {
0.1948,
0.1861,
0.1748,
0.1654,
0.1778,
0.1945,
0.1787,
0.1835,
0.1867,
0.1673,
0.1622,
0.1758,
0.1741,
0.1774,
0.1884,
0.1894,
0.1899,
0.1849,
0.1897,
0.18  //  Array Data

};

CTQL.DoubleVector arrMAmericanExchangeOption_Vol1 =
new  CTQL.DoubleVector(arrBMAmericanExchangeOption_Vol1);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Vol1 = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Vol1, false);


Example range for parameter : Vol2

Within Excel, a range such as this can be passed directly into the Vol2 parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Vol2



CTQL.CTRangeData MAmericanExchangeOption_Vol2;


double[] arrBMAmericanExchangeOption_Vol2 = {
0.132,
0.1253,
0.1274,
0.1138,
0.1213,
0.1252,
0.1104,
0.1262,
0.1093,
0.1154,
0.115,
0.1214,
0.1268,
0.1314,
0.1316,
0.1233,
0.1156,
0.115,
0.1208,
0.12  //  Array Data

};

CTQL.DoubleVector arrMAmericanExchangeOption_Vol2 =
new  CTQL.DoubleVector(arrBMAmericanExchangeOption_Vol2);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Vol2 = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Vol2, false);


Example range for parameter : Rho

Within Excel, a range such as this can be passed directly into the Rho parameter.


Data is stored within the second column (Vector of data)..

Example C# API usage for setting the range data for parameter : Rho



CTQL.CTRangeData MAmericanExchangeOption_Rho;


double[] arrBMAmericanExchangeOption_Rho = {
0.852,
0.866,
0.7271,
0.8248,
0.7587,
0.8659,
0.8071,
0.865,
0.7969,
0.7946,
0.7717,
0.7997,
0.7472,
0.7598,
0.8272,
0.8197,
0.8075,
0.7383,
0.7734,
0.8  //  Array Data

};

CTQL.DoubleVector arrMAmericanExchangeOption_Rho =
new  CTQL.DoubleVector(arrBMAmericanExchangeOption_Rho);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MAmericanExchangeOption_Rho = new  CTQL.CTRangeData(arrMAmericanExchangeOption_Rho, false);



Example function usage


The C# example below contains all the sub-function calls leading up to this function call. As a result, the example can contain a lot of code.

The VB.NET, J#, C++.NET, Java, Excel VBA, Visual Basic 6 (via COM) and C++ examples below contain function code stubs for the calls leading up to this function call. However, the function call for this function is displayed.
You can easily reproduce the stub functions code from the C# example.


If you are accessing this functrion via the MiniXL libraries, this function is present within the CT.QL.Pricing20 MiniXL Excel Addin.

Within our Excel Example Addin Generator, we have used the following QuantTools sub-functions in order to prepare the arguments needed to call the MAmericanExchangeOption() function. If you are executing this function via the MiniXL libraries, the module addin name, (in brackets, to the right of the sub-functions listed below), indicates the MiniXL library in which the sub-function is held. You will need to load this library into your Excel session (along with any other libraries that the sub-function call within the addin requires (ie - CT.QT.Utils20 addin in almost all cases) in order for the example to compute successfully.


The following four examples demostrate calling this function within a Microsoft .NET environment

The following four examples demostrate calling this function within a non .NET environment

The following is a sample output from executing the MAmericanExchangeOption() function call


Example
NoOfUnitsPositionUnderlying1Underlying2Quantity1Quantity2TimeRateb1b2Vol1Vol2RhoPREMIUM
1LONG10811211387340.10090.01830.03960.18340.12970.84421.90052
1LONG1049511387340.10580.02020.04050.16990.13180.77410.178
1LONG11111311387340.09620.01830.04330.16990.12260.83842.65416
1LONG1079711387340.09360.02060.03980.16240.11460.75411.075
1LONG959611387340.10380.02050.0430.19640.11210.8713.02884
1LONG11110311387340.10.01810.04090.1660.11980.83899.38167
1LONG10210311387340.090.020.04380.19290.11840.72833.91473
1LONG10010611387340.10740.0180.04290.17680.10990.8711.05381
1LONG1029611387340.10130.0210.03770.16380.1120.87977.07892
1LONG9811211387340.09570.01870.03860.16890.12050.73380.231647
1LONG1049811387340.10320.02060.04390.19050.12120.84117.81657
1LONG1089911387340.0920.02170.04140.17450.11720.860210.0864
1LONG9510211387340.1010.01860.040.17330.12210.76990.964884
1LONG9510311387340.10130.02110.04060.17810.12120.72940.966258
1LONG9110611387340.0970.02130.03660.16640.12880.7750.0693054
1LONG9510311387340.1040.02120.03680.17270.11990.85660.43443
1LONG989711387340.10910.02090.03950.19290.11480.78694.39209
1LONG9910311387340.10970.02140.03920.19320.12180.86071.73838
1LONG10311311387340.09860.01980.03610.19630.12440.83470.666399
1LONG10110411387340.10.020.040.180.120.82.26737



Copyright (c) 2003-2007 CapeTools - All Rights Reserved.