Getting Started

In this book we will guide you through the development using QWFIX SDK step by step.

This book contains a set of well designed tutorials that help programmers understand the QWFIX development, from basic to advanced topics.

Code Samples

Code samples are colorized as following:

CopyExample of Syntax Highlighting
 1-#region Collapsible region
 2 // Test method
 3 public void TestMethod(string s, int x)
 4 {
 5 #if DEBUG
 6-    // Debug code
 7     x = x + 1;
 8     s = x.ToString();
 9 #else
10-    // Release code
11     x = x + 5;
12     s = x.ToString();
13 #endif
14 
15     Console.WriteLine("The string = " + s);
16 }
17 #endregion

Cross References

Cross references between SDK class documentations and articles are set up for better understanding. For example, pressing the link below will navigate the documentation of QWRemote namespace.

See QWRemote Namespace

 

In This Section

Installing QWFIX SDK
Provides step by step guides about how to install QWFIX SDK.

QWFIX.Net Programming Manual
Provides tutorials and guides about QWFIX.Net development.

QWFIX_J Programming Manual
Provides tutorials and guides about QWFIX_J development.

Latency Benchmark
Provides information about latency benchmark of QWFIX system.