API Documentation

NxST_EXGCORRECTIONMAP(12) - Exchange Correction Flags


#define Value Comments
Correction 0x00000001
Cancel 0x00000002
Busted 0x00000004
EntryError 0x00000008
CancelBid 0x00000010
CancelAsk 0x00000020

You may use code from a helper header file

You may use the code below in your own program



// example
   bool bIsCorrection = (field & nxST_EXGCORRECTIONMAP::Correction) != 0;
   bool bIsCancel     = (field & nxST_EXGCORRECTIONMAP::Cancel)     != 0;
   bool bIsBusted     = (field & nxST_EXGCORRECTIONMAP::Busted)     != 0;
   bool bIsEntryError = (field & nxST_EXGCORRECTIONMAP::EntryError) != 0;
   bool bIsCancelBid  = (field & nxST_EXGCORRECTIONMAP::CancelBid)  != 0;
   bool bIsCancelAsk  = (field & nxST_EXGCORRECTIONMAP::CancelAsk)  != 0;