Modulus Financial Engineering HomeModulus Financial Engineering
NAQ Professional Data Feed API (Level I and Level II)

Bate

These constants are used by the GetTickHistory function to specify the type of historic tick data to retrieve.

enum Bate{
  ebTRADEINSIDE = 1, // Trade
  ebBID = 2, // Bid
  ebASK = 3, // Ask
  ebPREMKT = 4, // Pre Market
  ebPOSTMKT = 5, // Post Market
  ebSETTLEMENT = 6, // Settlement
  ebTRADEABOVEASK = 7, // Trade above Ask
  ebTRADEATASK = 8, // Trade at Ask
  ebTRADEATBID = 9, // Trade at Bid
  ebTRADEBELOWBID = 10, // Trade below Bid
  ebDAYHIGH = 11, // Day High
  ebDAYLOW 12 // Day Low
  ebYEARHIGH = 13, // Year High
  ebYEARLOW = 14, // Year Low
  ebBESTBID = 15, // Best Bid
  ebBESTASK = 16, // Best Ask
  ebDEFAULT = 101, // Default
  ebUPTRADE = 102, // Up Trade
  ebDOWNTRADE = 103, // Down Trade
  ebTRADES = 997, // Trade or Pre-mkt or Post-mkt
  ebBIDASK = 998, // Bid or Ask
  ebALL = 999 // Any BATE
}Bate;