Tag 35
35 = D New Order Single Request
35 = G Modification Request
35 = F Cancel Request
35 = 8 New Order Single Ack
New Order Single Reject
35 = 9 Modification Reject
Cancel Reject
35 = h Trading Session Status
35 = d Security definition
35 = Q Don’t know trade
Tag 150
150 = 0 New
150 = 1 Partial fill (4.2 specific, no longer used in 4.4)
150 = 2 Fill (4.2 specific, no longer used in 4.4)
150 = 3 Done for day
150 = 4 Canceled
150 = 5 Replaced
150 = 6 PendingCancel
150 = 7 Stopped
150 = 8 Rejected
150 = 9 Suspended
150 = A Pending New
150 = B Calculated
150 = C Expired
150 = D Restated (ExecutionRpt sent unsolicited by sellside, with ExecRestatementReason (378) set)
150 = E PendingReplace (e.g. result of Order Cancel/Replace Request)
150 = F Trade (Partial fill or Fill) (4.4 specific )
150 = G Trade Correct (4.4 specific ) (formerly an ExecTransType (20=2))
150 = H Trade Cancel (4.4 specific ) (formerly an ExecTransType (20=1))
150 = I Order Status (4.4 specific ) (formerly an ExecTransType (20=3))
分享到:
相关推荐
修改`CFLAGS`变量,添加`-I include/`选项,指示编译器在`include/`目录下查找头文件,并且使用`-c`标志来编译源文件而不是链接它们,`-fno-builtin`和`-fno-stack-protector`则分别用于禁用内置函数和栈保护,这两...
`f(i, ++i)`中,先计算`i`再计算`++i`,因此最终的结果是1。 **代码解析:** ```c #include void main() { int f(int a, int b); // 声明 int i = 2, p; p = f(i, ++i); printf("%d\n", p); } int f(int a, ...
LABEL F&ace... MESSAGE Modifies the faces of a body by the use of various methods. HINT This command is superseded by Synchronous Modeling commands. To run this legacy command, set UGII_DMX_NX502=1...
return{type:r,size:i,data:e.subarray(10,10+i)}},t.getID3Frames=function(e){for(var r=0,i=[];t.isHeader(e,r);){var a=t._readSize(e,r+6);r+=10;for(var n=r+a;r+8;){var o=t._getFrameData(e.subarray(r)),s=...
40 Object Type Translator Type File Messages (O2F) 41 Object Type Translator Initialization Messages (O2I) 42 Object Type Translator Unparser Messages (O2U) 43 Pro*COBOL Messages (PCB) 44 PCF FIPS ...
Scala Thrift 类型提供程序 ###用法: @fromSchema("myThrift.thrift") object ChatIDL val msg = ChatIDL.... 1: i32 x } struct Missing { 1: bool y 2: list<string> aa 3: Elem i 4: set<bool> bb
String[] letters = {"q", "w", "e", "r", "t", "y", "u", "i", "o", "p", "a", "s", "d", "f", "g", "h", "j", "k", "l", "z", "x", "c", "v", "b", "n", "m", "Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P",...
type Student = record name: string; age: Integer; end; var s: array[1..5] of Student; ``` **6. 文件操作** Pascal支持对文本和二进制文件的读写操作,可以用来持久化数据。 ```pascal var f: Text; ...
c the final model, using low cunning or the program 'FindResponse.f'. c c includes: include 'imp.inc' include 'occamdim.inc' c uses npp include 'occam.inc' c uses np, pm(), idebug, iout c c local ...
message = "Hello, my name is {} and I am {} years old.".format(name, age) print(message) # 输出:Hello, my name is Alice and I am 30 years old. ``` #### 9. 迭代器和生成器 - **迭代器**:具有`__iter__...
i < x; i++) for (int j = 0; j ; j++) if (myArray[i,j].Equals(myNumber)) goto Found; Console.WriteLine("The number {0} was not found.", myNumber); goto Finish; Found: 第 10 页 C#(WINFORM)学习 ...
- `t = input('message')`:提示用户输入信息并存储在变量`t`中。 #### 四、图像增强与分析 ##### 1. 亮度变换 用于改变图像的整体亮度。 - **函数**: - `g = imadjust(f, [low_in, high_in], [low_out, high...
Python 3.x 还改进了异常处理,使用 `raise Exception("message")` 直接抛出异常,而不是 `raise Exception, "message"`。 为了确保平稳过渡,建议使用 `2to3` 工具自动转换大部分 Python 2 代码到 Python 3 格式。...
<asp:panel style="overflow-x:scroll;overflow-y:auto;"> 13.回车转换成Tab if(event.keyCode==13 && event.srcElement.type!='button' && event.srcElement.type!='submit' && event.srcElement.type!='reset' ...
ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); ASSERT(IDM_ABOUTBOX ); CMenu* pSysMenu = GetSystemMenu(FALSE); if (pSysMenu != NULL) { CString strAboutMenu; strAboutMenu.LoadString(IDS_...
#define __REGb(x) (*(volatile unsigned char *)(x)) #define __REGi(x) (*(volatile unsigned int *)(x)) #define NF_BASE 0x4e000000 # if defined(CONFIG_S3C2410) #define NFCONF __REGi(NF_BASE + 0x0) #...
compressionType - Used to determine the compression that resources.arsc had on the original apk in order to replicate during [b]uild unknownFiles - Used to record name/location of non-standard files...
function f(x: number | string): number | string { if (typeof x === 'string') { return x.toUpperCase(); } else { return x * 2; } } ``` - **多个泛型的使用**:可以定义多个泛型参数,以增加函数或...