Advertisement
dmi3on

Untitled

Apr 20th, 2014
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.50 KB | None | 0 0
  1. #pragma pack(1)
  2. typedef struct
  3. {
  4.     unsigned short int TradeCondition:8; // Max Value 255
  5.     unsigned short int ConditionFlag:2;  // Might not be use only 3
  6.     unsigned short int ReportingExg:8;    // Max Value 255
  7.     unsigned short int int_Time; //Max Value 43199 without miliseconds
  8.     unsigned int ExgSequence; // Max Value N/A defualt nxCore
  9.     unsigned int RecordsBack; //Max Value N/A defualt nxCore
  10.     unsigned int Size;
  11.     double Price; // change letter
  12.     char Symbol[5];     // symbol not sure yet
  13.  
  14. } record;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement