Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 682 Bytes

adapter_initialization_quantfeed.md

File metadata and controls

21 lines (16 loc) · 682 Bytes

Adapter initialization QuantFEED

The code below demonstrates how to initialize the QuantFeedMessageAdapter and send it to Connector.

Connector Connector = new Connector();				
...				
var messageAdapter = new QuantFeedMessageAdapter(Connector.TransactionIdGenerator)
{
    Login = "<Your Login>",
    Password = "<Your Password>".To<SecureString>(),
    Address = "<Address>".To<EndPoint>(),
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
...	
							

Recommended content

Connection settings window