With dxFeed C and .NET APIs you can start receiving your market events writing only several lines of code.
Name
System Requirements
Source
Documentation
dxFeed C API
Windows: Visual C++ Redistributable 2015 with C Runtime (CRT) v14 Linux: libc 2.12+
dxFeed .NET API
Visual C++ Redistributable 2015 with C Runtime (CRT) v14
.Net 4.5+
dxFeed .NET API Example
using (var con = new NativeConnection("demo.dxfeed.com:7300", connection => { }))
{
using (var sub = con.CreateSubscription(EventType.Quote, new EventPrinter()))
{
sub.AddSymbols("IBM", "GOOG", "AAPL", "SPY");
Console.WriteLine("Press enter to stop");
Console.ReadLine();
}
}