API Documentation

Language: C++ Java Python C C#
Basic: Intro/Trade Quote Category Status Symbol Options
Detailed: Trade Quote

Introduction to Categories

Categories messages cover a wide variety of information about the security. For this example, we will be printing the symbol name and official closing report. The category list contains all available categories and indication if they are active. All categories from the previous day will be sent 4 minutes into the file and new categories will be added through the day.

Code

using System;
using NxCoreAPI;
class CategorySample {

    static unsafe int OnNxCoreCallback(NxCoreSystem* pNxCoreSys, NxCoreMessage* pNxCoreMsg) {
        if (pNxCoreMsg->MessageType == NxCore.NxMSG_CATEGORY) {
            NxCoreHeader* pHeader = &pNxCoreMsg->coreHeader;
            var symbol = new String(&pHeader->pnxStringSymbol->String);
            NxTime* pTimestamp = &pHeader->nxExgTimestamp;
            NxDate* pSessionDate = &pHeader->nxSessionDate;
            
            NxCoreCategory* pCategory = &pNxCoreMsg->coreData.Category;
            int categoryID = pCategory->pnxStringCategory->Atom;
            NxCategoryField* pFields = pCategory->pnxFields;

            if (categoryID == 4) {
                if (pFields[0].Set == 1) {
                    var name = new String(pFields[0].data.StringZ);
                    Console.WriteLine("{0:s} name is {1:s}", symbol, name);
                }
            }
            if (categoryID == 50 || categoryID == 52 || categoryID == 54) {
                double high = 0.0;
                double low = 0.0;
                double last = 0.0;
                long volume = 0;
                if (pFields[2].Set == 1)
                    high = NxCore.PriceToDouble(pFields[2].data.nxPrice.Price, pFields[2].data.nxPrice.PriceType);
                if (pFields[3].Set == 1)
                    low = NxCore.PriceToDouble(pFields[3].data.nxPrice.Price, pFields[3].data.nxPrice.PriceType);
                if (pFields[4].Set == 1)
                    last = NxCore.PriceToDouble(pFields[4].data.nxPrice.Price, pFields[4].data.nxPrice.PriceType);
                if (pFields[6].Set == 1)
                    volume = pFields[6].data.i64Bit;
                Console.WriteLine("{0:s} on {1:d}{2:d2}{3:d2} had a high of ${4:f2}, low of ${5:f2}, last of ${6:f2}, and volume of {7:d} shares",
                    symbol, pSessionDate->Year, pSessionDate->Month, pSessionDate->Day, high, low, last, volume);
            }
        }
        return NxCore.NxCALLBACKRETURN_CONTINUE;
    }

    static unsafe void Main(string[] args) {
        if (args.Length < 1)
            return;
        int returnValue = NxCore.ProcessTape(args[0], null, 0, 0, CategorySample.OnNxCoreCallback);
        NxCore.processReturnValue(returnValue);
    }
}

Callback Function

Since we only want to process categories we check that MessageType equals NxMSG_CATEGORY.

static unsafe int OnNxCoreCallback(NxCoreSystem* pNxCoreSys, NxCoreMessage* pNxCoreMsg) {
    if (pNxCoreMsg->MessageType == NxCore.NxMSG_CATEGORY) {
        ...
    }
    return (int)NxCore.NxCALLBACKRETURN_CONTINUE;
}

Message Header

In addition to symbol and timestamp, the coreHeader also contains the session date of the message. For most cases the session date will be the same as the current date but for some messages, such as the official trade summary report, the session date may be from a previous date.

NxCoreHeader* pHeader = &pNxCoreMsg->coreHeader;
var symbol = new String(&pHeader->pnxStringSymbol->String);
NxTime* pTimestamp = &pHeader->nxExgTimestamp;
NxDate* pSessionDate = &pHeader->nxSessionDate;

Category Message

The Category object in the coreData object in NxCoreMessage contains category information when MessageType is NxMSG_Category. The Atom of the pnxStringCategory object identifies the category and corresponds to the ID column of the category list. The array pnxFields contains the data of the category message.

NxCoreCategory* pCategory = &pNxCoreMsg->coreData.Category;
int categoryID = pCategory->pnxStringCategory->Atom;
NxCategoryField* pFields = pCategory->pnxFields;

Equity Symbol Information Category

Symbol name is sent in the Equity Symbol Info category. On the web page for that category we can see the atom is 4, so we will check for the atom of 4. Additionally on the web page we can see the Security Name is index 0 of fields and is stored in data.StringZ. The data object is only be populated when Set equals 1.

if (categoryID == 4) {
    if (pFields[0].Set == 1) {
        var name = new String(pFields[0].data.StringZ);
        ...
    }
}

Official Closing Report Category

Categories CTA_ClosingReport(50), OTC_ClosingReport(52), and Nasdaq_ClosingReport(54) have the same fields and contain the official High, Low, and Last prices as well as volume for a day. The sessionDate is the date the category message corresponds to.

if (categoryID == 50 || categoryID == 52 || categoryID == 54) {
    double high = 0.0;
    double low = 0.0;
    double last = 0.0;
    long volume = 0;
    if (pFields[2].Set == 1)
        high = NxCore.PriceToDouble(
            pFields[2].data.nxPrice.Price, pFields[2].data.nxPrice.PriceType);
    if (pFields[3].Set == 1)
        low = NxCore.PriceToDouble(
            pFields[3].data.nxPrice.Price, pFields[3].data.nxPrice.PriceType);
    if (pFields[4].Set == 1)
        last = NxCore.PriceToDouble(
            pFields[4].data.nxPrice.Price, pFields[4].data.nxPrice.PriceType);
    if (pFields[6].Set == 1)
        volume = pFields[6].data.i64Bit;
    ...
}

Next:
Status