MComplexChooser





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

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

Key TAGs | Excel Index | API Index



Option that gives the holder the right to choose between a call option after time t1, with time to expiration Tc and strike Xc or a put option after time t1 with time to maturity Tp and strike Xp.

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.MComplexChooser




High level graphic of MComplexChooser() 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. Underlying parameter

    Underlying price, curve
  7. StrikeC parameter

    Strike price of the call option.
  8. StrikeP parameter

    Strike price of the put option.
  9. Timet1 parameter

    Time at which the option choices will be decided.
  10. TimeC parameter

    Expiration date of the call option.
  11. TimeP parameter

    Expiration date of the put option.
  12. 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.
  13. B parameter

    For the 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. Vol parameter

    Volatility of the underlying.
  15. Greek parameter

    For the option premium specify 'PREMIUM'. For all first derivatives, you can specify one of the following : 'dUnderlying' (for the 'Underlying' parameter), 'dStrikeC' (for the 'StrikeC' parameter), 'dStrikeP' (for the 'StrikeP' parameter), 'dTimet1' (for the 'Timet1' parameter), 'dTimeC' (for the 'TimeC' parameter), 'dTimeP' (for the 'TimeP' parameter), 'dRate' (for the 'Rate' parameter), 'dB' (for the 'B' parameter), 'dVol' (for the 'Vol' parameter), For second order derivatives, you can specify combinations of the first order derivatives (i.e. - 'dUnderlyingdUnderlying', 'dVoldVol', 'dUnderlyingdVol'. )


Extended information

Function Syntax

VB Syntax


Variant CTExoticAnalysis.MComplexChooser( _
Long ValueDate, _
DayCountEnum dayCounter, _
Variant Units, _
Variant Position, _
String Level, _
Variant Underlying, _
Variant StrikeC, _
Variant StrikeP, _
Variant Timet1, _
Variant TimeC, _
Variant TimeP, _
Variant Rate, _
Variant B, _
Variant Vol, _
String Greek)


Excel Spreadsheet Syntax


=CT.MComplexChooser(
Excel Numeric Cell ValueDate,
Excel String Cell dayCounter,
XLRange Units,
XLRange Position,
Excel String Cell Level,
XLRange Underlying,
XLRange StrikeC,
XLRange StrikeP,
XLRange Timet1,
XLRange TimeC,
XLRange TimeP,
XLRange Rate,
XLRange B,
XLRange Vol,
Excel String Cell Greek)


C++ Syntax


static CTRangeDataCPP MComplexChooser(
long ValueDate,
DayCountEnum dayCounter,
CTRangeDataCPP Units,
CTRangeDataCPP Position,
std::string Level,
CTRangeDataCPP Underlying,
CTRangeDataCPP StrikeC,
CTRangeDataCPP StrikeP,
CTRangeDataCPP Timet1,
CTRangeDataCPP TimeC,
CTRangeDataCPP TimeP,
CTRangeDataCPP Rate,
CTRangeDataCPP B,
CTRangeDataCPP Vol,
std::string Greek);


DotNET Syntax


CTRangeData CTExoticAnalysisSA.MComplexChooser(
System.Int32 ValueDate,
CTIEnums.DayCountEnum dayCounter,
CTRangeData Units,
CTRangeData Position,
System.String Level,
CTRangeData Underlying,
CTRangeData StrikeC,
CTRangeData StrikeP,
CTRangeData Timet1,
CTRangeData TimeC,
CTRangeData TimeP,
CTRangeData Rate,
CTRangeData B,
CTRangeData Vol,
System.String Greek);

Parameter data types

ArgNameArgTypeIsKey
ValueDateLongFALSE
dayCounterDayCountEnumFALSE
UnitsRangeFALSE
PositionRangeFALSE
LevelStringFALSE
UnderlyingRangeFALSE
StrikeCRangeFALSE
StrikePRangeFALSE
Timet1RangeFALSE
TimeCRangeFALSE
TimePRangeFALSE
RateRangeFALSE
BRangeFALSE
VolRangeFALSE
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
UnitsFALSEMComplexChooser_Units_Range (creates a range object)
PositionFALSEMComplexChooser_Position_Range (creates a range object)
LevelFALSEALL
UnderlyingFALSEMComplexChooser_Underlying_Range (creates a range object)
StrikeCFALSEMComplexChooser_StrikeC_Range (creates a range object)
StrikePFALSEMComplexChooser_StrikeP_Range (creates a range object)
Timet1FALSEMComplexChooser_Timet1_Range (creates a range object)
TimeCFALSEMComplexChooser_TimeC_Range (creates a range object)
TimePFALSEMComplexChooser_TimeP_Range (creates a range object)
RateFALSEMComplexChooser_Rate_Range (creates a range object)
BFALSEMComplexChooser_B_Range (creates a range object)
VolFALSEMComplexChooser_Vol_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 MComplexChooser_Units;


int[] arrBMComplexChooser_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 arrMComplexChooser_Units =
new  CTQL.IntVector(arrBMComplexChooser_Units);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MComplexChooser_Units = new  CTQL.CTRangeData(arrMComplexChooser_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 MComplexChooser_Position;


string[] arrBMComplexChooser_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 arrMComplexChooser_Position =
new  CTQL.StringVector(arrBMComplexChooser_Position);

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


Example range for parameter : Underlying

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


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

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



CTQL.CTRangeData MComplexChooser_Underlying;


int[] arrBMComplexChooser_Underlying = {
51,
51,
51,
52,
47,
54,
53,
53,
47,
46,
49,
48,
48,
53,
54,
54,
46,
53,
46,
50  //  Array Data

};

CTQL.IntVector arrMComplexChooser_Underlying =
new  CTQL.IntVector(arrBMComplexChooser_Underlying);

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


Example range for parameter : StrikeC

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


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

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



CTQL.CTRangeData MComplexChooser_StrikeC;


int[] arrBMComplexChooser_StrikeC = {
57,
54,
55,
57,
56,
50,
60,
59,
59,
58,
59,
52,
59,
53,
59,
57,
57,
57,
51,
55  //  Array Data

};

CTQL.IntVector arrMComplexChooser_StrikeC =
new  CTQL.IntVector(arrBMComplexChooser_StrikeC);

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


Example range for parameter : StrikeP

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


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

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



CTQL.CTRangeData MComplexChooser_StrikeP;


int[] arrBMComplexChooser_StrikeP = {
47,
47,
52,
46,
44,
51,
44,
50,
53,
45,
50,
51,
44,
49,
51,
51,
52,
51,
48,
48  //  Array Data

};

CTQL.IntVector arrMComplexChooser_StrikeP =
new  CTQL.IntVector(arrBMComplexChooser_StrikeP);

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


Example range for parameter : Timet1

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


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

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



CTQL.CTRangeData MComplexChooser_Timet1;


int[] arrBMComplexChooser_Timet1 = {
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy"),
CTQL.Date.serialNumber("18/10/2005", "dd/mm/yyyy")  //  Array Data

};

CTQL.IntVector arrMComplexChooser_Timet1 =
new  CTQL.IntVector(arrBMComplexChooser_Timet1);

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


Example range for parameter : TimeC

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


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

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



CTQL.CTRangeData MComplexChooser_TimeC;


int[] arrBMComplexChooser_TimeC = {
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 arrMComplexChooser_TimeC =
new  CTQL.IntVector(arrBMComplexChooser_TimeC);

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


Example range for parameter : TimeP

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


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

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



CTQL.CTRangeData MComplexChooser_TimeP;


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

};

CTQL.IntVector arrMComplexChooser_TimeP =
new  CTQL.IntVector(arrBMComplexChooser_TimeP);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MComplexChooser_TimeP = new  CTQL.CTRangeData(arrMComplexChooser_TimeP, 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 MComplexChooser_Rate;


double[] arrBMComplexChooser_Rate = {
0.0984,
0.0969,
0.1035,
0.0958,
0.1061,
0.102,
0.1082,
0.1073,
0.1004,
0.0984,
0.1066,
0.0939,
0.1003,
0.1047,
0.0945,
0.0945,
0.0904,
0.1034,
0.0957,
0.1  //  Array Data

};

CTQL.DoubleVector arrMComplexChooser_Rate =
new  CTQL.DoubleVector(arrBMComplexChooser_Rate);

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


Example range for parameter : B

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


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

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



CTQL.CTRangeData MComplexChooser_B;


double[] arrBMComplexChooser_B = {
0.0483,
0.0517,
0.0535,
0.0486,
0.051,
0.0525,
0.0462,
0.0477,
0.055,
0.0497,
0.0502,
0.0517,
0.0472,
0.0524,
0.046,
0.0451,
0.0478,
0.0514,
0.0496,
0.05  //  Array Data

};

CTQL.DoubleVector arrMComplexChooser_B =
new  CTQL.DoubleVector(arrBMComplexChooser_B);

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


Example range for parameter : Vol

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


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

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



CTQL.CTRangeData MComplexChooser_Vol;


double[] arrBMComplexChooser_Vol = {
0.3314,
0.3257,
0.3399,
0.3366,
0.3467,
0.3817,
0.3736,
0.3479,
0.3428,
0.3205,
0.373,
0.3599,
0.3646,
0.3797,
0.3298,
0.3837,
0.3479,
0.353,
0.3772,
0.35  //  Array Data

};

CTQL.DoubleVector arrMComplexChooser_Vol =
new  CTQL.DoubleVector(arrBMComplexChooser_Vol);

// Second parameter determines whether the array is a column array (false) or a row array (true)
MComplexChooser_Vol = new  CTQL.CTRangeData(arrMComplexChooser_Vol, 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 MComplexChooser() 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 MComplexChooser() function call


Example
NoOfUnitsPositionUnderlyingStrikeCStrikePTimet1TimeCTimePRateBVolPREMIUM
1LONG4653483864338734387650.09220.04990.36246.93912
1LONG5255473864338734387650.09120.05250.36316.33088
1LONG4660473864338734387650.09430.0470.36565.59153
1LONG4550513864338734387650.0980.0510.35759.06918
1LONG4858493864338734387650.10670.05360.34445.80899
1LONG4652453864338734387650.10530.05130.33415.17306
1LONG4652453864338734387650.10460.05420.36965.93719
1LONG5355463864338734387650.09520.05140.33265.683
1LONG5354463864338734387650.09630.04870.33566.15249
1LONG5058523864338734387650.09740.050.34887.02902
1LONG5250483864338734387650.10990.04810.37818.89344
1LONG5151513864338734387650.09860.05160.37649.03177
1LONG5456493864338734387650.09250.0450.36367.04678
1LONG5560523864338734387650.09460.05260.36376.86785
1LONG4558473864338734387650.10580.0480.33385.31461
1LONG5457503864338734387650.09340.05170.31545.78458
1LONG5254463864338734387650.10590.04790.37616.7757
1LONG5458443864338734387650.10640.04610.36545.42338
1LONG5254443864338734387650.10.05310.36886.1335
1LONG5055483864338734387650.10.050.356.0433



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