Category Description
Category sent for stocks that are restricted from short-sale
Category Identification
| pNxCoreMessage->coreData.Category.pnxStringCategory->Atom | 66 |
| pNxCoreMessage->coreData.Category.pnxStringCategory->String | ShortSaleRestricted |
Update Time and Frequency
| Approximate Time | Info |
|---|---|
| 00:00 AM | Information from previous session |
| 05:15 AM | Current session information |
| Occasional Updates | Can be sent from the exchange throughout the day |
Category Fields | 1
| Index | FieldName | FieldType | C Code | Info |
|---|---|---|---|---|
| 0 | ShortSaleRestricted | NxCFT_32BIT | pnxFields[0].data.i32Bit | Non-zero value if the symbol is short-sale restricted. 1 = Day one,2 = Day two. |
Code Sample from CategoryDumper project:
void onNxCoreCategory_66(const NxCoreMessage *pNxCoreMsg)
{
NxCategoryField *pField;
// Print the category num and the Symbol
PrintSymbol(pNxCoreMsg);
pField=&pNxCoreMsg->coreData.Category.pnxFields[0];
if (pField->Set)
printf("UPC11830: %d \n",pField->data.i32Bit);
}