Initialization of Bullish Adapter
The code below demonstrates how to initialize the BullishMessageAdapter and pass it to the Connector.
Connector Connector = new Connector();
...
var messageAdapter = new BullishMessageAdapter(Connector.TransactionIdGenerator)
{
Key = "<Your value>".To<SecureString>(),
Secret = "<Your value>".To<SecureString>(),
TradingAccountId = "<Your value>",
RateLimitToken = "<Your value>".To<SecureString>(),
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
...