Basic: | Intro/Trade | Quote | Category | Status | Symbol | Options |
Detailed: | Trade | Quote |
Getting Started and Introduction to Trades
This is a simple introduction to writing code using NxCore. If you are not ready to begin writing code, check out Time and Sales to extract NxCore Data using a GUI. This example will cover printing the price and size of trades.
Getting Started
Code
using System; using NxCoreAPI; class tradeSample { static unsafe int OnNxCoreCallback(NxCoreSystem* pNxCoreSys, NxCoreMessage* pNxCoreMsg) { if (pNxCoreMsg->MessageType == NxCore.NxMSG_TRADE) { NxCoreHeader* pHeader = &pNxCoreMsg->coreHeader; String symbol = new String(&pHeader->pnxStringSymbol->String); NxTime* pTimestamp = &pHeader->nxExgTimestamp; NxCoreTrade* pTrade = &pNxCoreMsg->coreData.Trade; double price = NxCore.PriceToDouble(pTrade->Price, pTrade->PriceType); uint size = pTrade->Size; Console.WriteLine("Trade for {0:s} at {1:d2}:{2:d2}:{3:d2} {4:d} shares at ${5:f2}", symbol, pTimestamp->Hour, pTimestamp->Minute, pTimestamp->Second, size, price); } return NxCore.NxCALLBACKRETURN_CONTINUE; } static unsafe void Main(string[] args) { if (args.Length < 1) return; int returnValue = NxCore.ProcessTape(args[0], null, 0, 0, tradeSample.OnNxCoreCallback); NxCore.processReturnValue(returnValue); } }
Import
This creates an alias for the System and NxCore namespace. The NxCore Namespace is from one of 3 files depending on CPU architecture: "NxCoreAPI.cs" for 32-bit Windows, "NxCoreAPI64.cs" for 64-bit Windows, or "NxCoreAPI_Linux.cs" for linux and macOS. The NxCore .cs file is determined by the .csproj file used. The NxCoreAPI namespace loads a corresponding dynamic library("NxCoreAPI.dll", "NxCoreAPI64.dll", "libnx.so", or "libnx.dylib") from the working directory or library path. If you receive a System.DllNotFoundException error, ensure the program can find the dynamic library. For Windows, place the dll in the working directory. For Linux, include the library folder in LD_LIBRARY_PATH. For macOS, include the library folder in DYLD_FALLBACK_LIBRARY_PATH. |
using System; using NxCoreAPI; |
Callback Function
The NxCore API uses a callback function to deliver tick data. OnNxCoreCallback must be defined with 2 parameters of type NxCoreSystem and NxCoreMessage, respectively. The callback should return NxCALLBACKRETURN_CONTINUE to receive the next message. |
static unsafe int OnNxCoreCallback (NxCoreSystem* pNxCoreSys, NxCoreMessage* pNxCoreMsg) { if (pNxCoreMsg->MessageType == NxCore.NxMSG_TRADE) { ... } return NxCore.NxCALLBACKRETURN_CONTINUE; } |
Message Header
The coreHeader member in NxCoreMessage contains general information about the message. For this example we will get the Symbol from pnxStringSymbol and exchange timestamp. For most feeds nxExgTimestamp will have millisecond resolution. |
NxCoreHeader* pHeader = &pNxCoreMsg->coreHeader; String symbol = new String(&pHeader->pnxStringSymbol->String); NxTime* pTimestamp = &pHeader->nxExgTimestamp; |
Trade Message
The Trade member in the coreData member in NxCoreMessage contains details of the trade when MessageType is NxMSG_TRADE. For this example we will get the size of the trade and the price as a double. PriceToDouble can be used to convert NxCore integer Prices into a double floating-point price. |
NxCoreTrade* pTrade = &pNxCoreMsg->coreData.Trade; double price = NxCore.PriceToDouble(pTrade->Price, pTrade->PriceType); uint size = pTrade->Size; |
Printing
This simply prints the values we found earlier in the code. |
Console.WriteLine("Trade for {0:s} at {1:d2}:{2:d2}:{3:d2} {4:d} shares at ${5:f2}", symbol, pTimestamp->Hour, pTimestamp->Minute, pTimestamp->Second, size, price); |
Start Processing
ProcessTape begins processing the file in the first argument. The callback declared earlier should be the fifth argument. For this simple example all other arguments can be ignored. ProcessReturnValue prints the result of ProcessTape. |
int returnValue = NxCore.ProcessTape(args[0], null, 0, 0, tradeSample.OnNxCoreCallback); NxCore.processReturnValue(returnValue); |
Next:
Quote
Detailed Trade