MGeometricAverageRateOption





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

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

Key TAGs | Excel Index | API Index



Asian options are especially popular in the currency and commodity markets.

An average is less volatile than the underlying asset itself and will lower the price of an average-rate option compared with a similar standard option.

If the underlying asset is assumed to be lognormally distributed, the geometric average of the asset will itself be lognormally distributed.

The geometric average option can be priced as a standard option by changing the volatility and cost of carry term.

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




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

    Option Types (C)all or (P)ut
  7. S parameter

    Underlying price
  8. SA parameter

    Geometric average of the known asset price fixings.
  9. X parameter

    Strike price of the option
  10. T parameter

    Original time to option maturity.
  11. T2 parameter

    Remaining time to option maturity.
  12. r 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. v 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 : 'dS' (for the 'S' parameter), 'dSA' (for the 'SA' parameter), 'dX' (for the 'X' parameter), 'dT' (for the 'T' parameter), 'dT2' (for the 'T2' parameter), 'dr' (for the 'r' parameter), 'db' (for the 'b' parameter), 'dv' (for the 'v' parameter), For second order derivatives, you can specify combinations of the first order derivatives (i.e. - 'dSdS', 'dvdv', 'dSdv'. )


Extended information

Function Syntax

VB Syntax


Variant CTExoticAnalysis.MGeometricAverageRateOption( _
Long ValueDate, _
DayCountEnum dayCounter, _
Variant Units, _
Variant Position, _
String Level, _
Variant CallPut, _
Variant S, _
Variant SA, _
Variant X, _
Variant T, _
Variant T2, _
Variant r, _
Variant b, _
Variant v, _
String Greek)


Excel Spreadsheet Syntax


=CT.MGeometricAverageRateOption(
Excel Numeric Cell ValueDate,
Excel String Cell dayCounter,
XLRange Units,
XLRange Position,
Excel String Cell Level,
XLRange CallPut,
XLRange S,
XLRange SA,
XLRange X,
XLRange T,
XLRange T2,
XLRange r,
XLRange b,
XLRange v,
Excel String Cell Greek)


C++ Syntax


static CTRangeDataCPP MGeometricAverageRateOption(
long ValueDate,
DayCountEnum dayCounter,
CTRangeDataCPP Units,
CTRangeDataCPP Position,
std::string Level,
CTRangeDataCPP CallPut,
CTRangeDataCPP S,
CTRangeDataCPP SA,
CTRangeDataCPP X,
CTRangeDataCPP T,
CTRangeDataCPP T2,
CTRangeDataCPP r,
CTRangeDataCPP b,
CTRangeDataCPP v,
std::string Greek);


DotNET Syntax


CTRangeData CTExoticAnalysisSA.MGeometricAverageRateOption(
System.Int32 ValueDate,
CTIEnums.DayCountEnum dayCounter,
CTRangeData Units,
CTRangeData Position,
System.String Level,
CTRangeData CallPut,
CTRangeData S,
CTRangeData SA,
CTRangeData X,
CTRangeData T,
CTRangeData T2,
CTRangeData r,
CTRangeData b,
CTRangeData v,
System.String Greek);

Parameter data types

ArgNameArgTypeIsKey
ValueDateLongFALSE
dayCounterDayCountEnumFALSE
UnitsRangeFALSE
PositionRangeFALSE
LevelStringFALSE
CallPutRangeFALSE
SRangeFALSE
SARangeFALSE
XRangeFALSE
TRangeFALSE
T2RangeFALSE
rRangeFALSE
bRangeFALSE
vRangeFALSE
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
UnitsFALSEMGeometricAverageRateOption_Units_Range (creates a range object)
PositionFALSEMGeometricAverageRateOption_Position_Range (creates a range object)
LevelFALSEALL
CallPutFALSEMGeometricAverageRateOption_CallPut_Range (creates a range object)
SFALSEMGeometricAverageRateOption_S_Range (creates a range object)
SAFALSEMGeometricAverageRateOption_SA_Range (creates a range object)
XFALSEMGeometricAverageRateOption_X_Range (creates a range object)
TFALSEMGeometricAverageRateOption_T_Range (creates a range object)
T2FALSEMGeometricAverageRateOption_T2_Range (creates a range object)
rFALSEMGeometricAverageRateOption_r_Range (creates a range object)
bFALSEMGeometricAverageRateOption_b_Range (creates a range object)
vFALSEMGeometricAverageRateOption_v_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 MGeometricAverageRateOption_Units;


int[] arrBMGeometricAverageRateOption_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 arrMGeometricAverageRateOption_Units =
new  CTQL.IntVector(arrBMGeometricAverageRateOption_Units);

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


string[] arrBMGeometricAverageRateOption_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 arrMGeometricAverageRateOption_Position =
new  CTQL.StringVector(arrBMGeometricAverageRateOption_Position);

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


Example range for parameter : CallPut

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


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

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



CTQL.CTRangeData MGeometricAverageRateOption_CallPut;


string[] arrBMGeometricAverageRateOption_CallPut = {
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call",
"Call"  //  Array Data

};

CTQL.StringVector arrMGeometricAverageRateOption_CallPut =
new  CTQL.StringVector(arrBMGeometricAverageRateOption_CallPut);

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


Example range for parameter : S

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


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

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



CTQL.CTRangeData MGeometricAverageRateOption_S;


double[] arrBMGeometricAverageRateOption_S = {
80.6688,
79.4874,
78.1361,
75.8765,
84.5957,
87.617,
78.0168,
87.4257,
84.3739,
85.005,
83.685,
80.9252,
76.3639,
83.5702,
72.3837,
85.6454,
73.754,
76.7474,
76.8093,
80.0  //  Array Data

};

CTQL.DoubleVector arrMGeometricAverageRateOption_S =
new  CTQL.DoubleVector(arrBMGeometricAverageRateOption_S);

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


Example range for parameter : SA

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


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

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



CTQL.CTRangeData MGeometricAverageRateOption_SA;


int[] arrBMGeometricAverageRateOption_SA = {
80,
81,
85,
76,
74,
85,
83,
83,
82,
85,
81,
73,
86,
77,
87,
79,
74,
81,
76,
80  //  Array Data

};

CTQL.IntVector arrMGeometricAverageRateOption_SA =
new  CTQL.IntVector(arrBMGeometricAverageRateOption_SA);

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


Example range for parameter : X

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


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

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



CTQL.CTRangeData MGeometricAverageRateOption_X;


int[] arrBMGeometricAverageRateOption_X = {
81,
77,
79,
87,
93,
87,
83,
78,
78,
82,
78,
91,
77,
87,
78,
79,
82,
84,
78,
85  //  Array Data

};

CTQL.IntVector arrMGeometricAverageRateOption_X =
new  CTQL.IntVector(arrBMGeometricAverageRateOption_X);

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


Example range for parameter : T

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


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

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



CTQL.CTRangeData MGeometricAverageRateOption_T;


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

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


Example range for parameter : T2

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


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

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



CTQL.CTRangeData MGeometricAverageRateOption_T2;


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

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


Example range for parameter : r

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


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

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



CTQL.CTRangeData MGeometricAverageRateOption_r;


double[] arrBMGeometricAverageRateOption_r = {
0.0497,
0.0492,
0.0519,
0.0498,
0.0506,
0.0494,
0.0462,
0.0455,
0.0499,
0.0543,
0.0548,
0.0515,
0.0488,
0.049,
0.049,
0.0472,
0.0499,
0.0539,
0.0526,
0.05  //  Array Data

};

CTQL.DoubleVector arrMGeometricAverageRateOption_r =
new  CTQL.DoubleVector(arrBMGeometricAverageRateOption_r);

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

System.Text.StringBuilder MGeometricAverageRateOption_b_builder =
new System.Text.StringBuilder(100);

MGeometricAverageRateOption_b_builder.Append("{");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0 ;");
MGeometricAverageRateOption_b_builder.Append("0.00");
MGeometricAverageRateOption_b_builder.Append("}");

// Parse the string into the Range object.
MGeometricAverageRateOption_b.RangeFromStr( MGeometricAverageRateOption_b_builder.ToString() );


Example range for parameter : v

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


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

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



CTQL.CTRangeData MGeometricAverageRateOption_v;


double[] arrBMGeometricAverageRateOption_v = {
0.218,
0.2057,
0.2188,
0.1884,
0.2,
0.2016,
0.215,
0.218,
0.1873,
0.182,
0.2176,
0.1897,
0.1839,
0.187,
0.1879,
0.2121,
0.2067,
0.2187,
0.2029,
0.20  //  Array Data

};

CTQL.DoubleVector arrMGeometricAverageRateOption_v =
new  CTQL.DoubleVector(arrBMGeometricAverageRateOption_v);

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


Example
NoOfUnitsPositionCallPutSSAXTT2rbvPREMIUM
1LONGCall78.235748338643386430.053100.21120.507865
1LONGCall80.2156809038643386430.046600.21170.0722365
1LONGCall84.6713859238643386430.04800.18670.156252
1LONGCall79.1117868638643386430.045200.21920.262428
1LONGCall83.3678749238643386430.048300.1870.0795597
1LONGCall74.8679737738643386430.046900.19570.965942
1LONGCall74.5619739038643386430.051700.19120.000545016
1LONGCall79.8971818038643386430.052900.18721.89078
1LONGCall77.6403768438643386430.051800.18880.181219
1LONGCall74.1637759238643386430.049400.20210.000180101
1LONGCall86.3348808438643386430.048600.18573.51047
1LONGCall83.598788938643386430.051500.21190.490752
1LONGCall81.4793868138643386430.050300.21982.51363
1LONGCall85.8226789338643386430.053900.20460.256858
1LONGCall81.8309848938643386430.047200.18240.130756
1LONGCall73.6916777838643386430.051800.21990.561393
1LONGCall73.4521837738643386430.054100.21210.676208
1LONGCall83.1423788338643386430.050600.18882.10126
1LONGCall78.1566868538643386430.045400.19630.168546
1LONGCall80808538643386430.0500.20.424707



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