Table of Contents


Category Description

Futures Option Contract Information

Category Identification

pNxCoreMessage->coreData.Category.pnxStringCategory->Atom 86
pNxCoreMessage->coreData.Category.pnxStringCategory->String FutureOptContract

Update Time and Frequency

Approximate Time Info
00:00 AM Information from current session
No Updates No updates throughout the day

Category Fields | 2

Index FieldName FieldType C Code Info
0 StrikePrice NxCFT_PRICE pnxFields[0].data.nxPrice Contract Strike Price
1 ExpireDate NxCFT_DATE pnxFields[1].data.nxDate Contract Expiration Date

Code Sample from CategoryDumper project:

void onNxCoreCategory_85(const NxCoreMessage *pNxCoreMsg)
{
     NxCategoryField *pField;
 			 
     // Print the category num and the Symbol
     PrintSymbol(pNxCoreMsg);
 			 
     pField=&pNxCoreMsg->coreData.Category.pnxFields[0];
     if (pField->Set)
         printf("Strike Price: %0.4f \n",
                pfNxCorePriceToDouble(pField->data.nxPrice.Price,
                                      pField->data.nxPrice.PriceType));
 			 
     pField=&pNxCoreMsg->coreData.Category.pnxFields[1];		          
     if (pField->Set)
         printf("Expiration Date: %02d/%02d/%d \n",
                pField->data.nxDate.Month,
                pField->data.nxDate.Day,
                pField->data.nxDate.Year);
}