Category Description
Market Maker Status
Category Identification
| pNxCoreMessage->coreData.Category.pnxStringCategory->Atom | 69 |
| pNxCoreMessage->coreData.Category.pnxStringCategory->String | MMakerStatus |
Update Time and Frequency
| Approximate Time | Info |
|---|---|
| 05:30 AM | Current session information |
| Occasional Updates | Occasional updates throughout the day |
Category Fields | 2
| Index | FieldName | FieldType | C Code | Info |
|---|---|---|---|---|
| 0 | MMID | NxCFT_32BIT | pnxFields[0].data.i32Bit | Market Maker ID |
| 1 | Status | NxCFT_32BIT | pnxFields[1].data.i32Bit | Market Maker Status |
Code Sample from CategoryDumper project:
void onNxCoreCategory_69(const NxCoreMessage *pNxCoreMsg)
{
NxCategoryField *pField;
// Print the category num and the Symbol
PrintSymbol(pNxCoreMsg);
pField=&pNxCoreMsg->coreData.Category.pnxFields[0];
if (pField->Set)
printf("MMID: %d \n",pField->data.i32Bit);
pField=&pNxCoreMsg->coreData.Category.pnxFields[1];
if (pField->Set)
printf("Status: %d \n",pField->data.i32Bit);
}