static void Main(string[] args) { try { // Add your app secret Key here . The app_key looks like : 00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000 string appSecretKey = "Add your app secret key here"; // Set the environment the app needs to run in here tt_net_sdk.ServiceEnvironment environment = tt_net_sdk.ServiceEnvironment.UatCert; // Select the mode in which you wish to run -- Client (outside the TT datacenter) // or Server (on a dedicated machine inside TT datacenter) tt_net_sdk.TTAPIOptions.SDKMode sdkMode = tt_net_sdk.TTAPIOptions.SDKMode.Client; tt_net_sdk.TTAPIOptions apiConfig = new tt_net_sdk.TTAPIOptions( sdkMode, environment, appSecretKey, 5000); // Add the host machine instance id assigned to you by TT only needed for Server mode. If set in // Client mode, it will simply be ignored string instanceId = "Add your host machine instance id here"; apiConfig.ServerInstanceId = instanceId; // set any other SDK options you need configured apiConfig.ProfitLossCalculationType = tt_net_sdk.ProfitLossCalculationType.RiskWaterfall; // Start the TT API on the same thread TTNetApiFunctions tf = new TTNetApiFunctions(); Thread workerThread = new Thread(() => tf.Start(apiConfig)); workerThread.Name = "TT NET SDK Thread"; workerThread.Start(); while (true) { string input = System.Console.ReadLine(); if (input == "q") { break; } } tf.Dispose(); } catch (Exception e) { Console.WriteLine(e.Message + "\n" + e.StackTrace); } }
static void Main(string[] args) { try { // Add your app secret Key here. It looks like: 00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000 string appSecretKey = "Add your app secret Key here"; // Add the host machine instance id assigned to you by TT only needed for Server mode. If set in // Client mode, it will simply be ignored string instanceId = "Add your host machine instance id here"; appSecretKey = "75c48da6-53fe-b15b-5b5e-1e546f6ed6ed:8f5aea1b-14c8-64b4-df99-99a2f0909273"; instanceId = "trish_coresdk_vm180"; // Set the environment the app needs to run in here tt_net_sdk.ServiceEnvironment environment = tt_net_sdk.ServiceEnvironment.DevCert; // Select the mode in which you wish to run -- Client (outside the TT datacenter) // or Server (on a dedicated machine inside TT datacenter) tt_net_sdk.TTAPIOptions.SDKMode sdkMode = tt_net_sdk.TTAPIOptions.SDKMode.Server; tt_net_sdk.TTAPIOptions apiConfig = new tt_net_sdk.TTAPIOptions( sdkMode, environment, appSecretKey, 5000); // set the instance id and any other SDK options needed apiConfig.ServerInstanceId = instanceId; // Start the TT API on the same thread TTNetApiFunctions tf = new TTNetApiFunctions(); Thread workerThread = new Thread(() => tf.Start(apiConfig)); workerThread.Name = "TT NET SDK Thread"; workerThread.Start(); while (true) { string input = System.Console.ReadLine(); if (input == "q") { break; } } tf.Dispose(); } catch (Exception e) { Console.WriteLine(e.Message + "\n" + e.StackTrace); } }
static void Main(string[] args) { try { // Add your app secret Key here. It looks like: 00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000 string appSecretKey = "Add your app secret Key here"; // Set the environment the app needs to run in here tt_net_sdk.ServiceEnvironment environment = tt_net_sdk.ServiceEnvironment.DevCert; // Select the mode in which you wish to run -- Client (outside the TT datacenter) // or Server (on a dedicated machine inside TT datacenter) tt_net_sdk.TTAPIOptions.SDKMode sdkMode = tt_net_sdk.TTAPIOptions.SDKMode.Server; tt_net_sdk.TTAPIOptions apiConfig = new tt_net_sdk.TTAPIOptions( sdkMode, environment, appSecretKey, 5000); // Start the TT API on the same thread TTNetApiFunctions tf = new TTNetApiFunctions(); Thread workerThread = new Thread(() => tf.Start(apiConfig)); workerThread.Name = "TT NET SDK Thread"; workerThread.Start(); while (true) { string input = System.Console.ReadLine(); if (input == "q") { break; } } tf.Dispose(); } catch (Exception e) { Console.WriteLine(e.Message + "\n" + e.StackTrace); } }
static void Main(string[] args) { try { // Add your app secret Key here. It looks like: 00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000 string appSecretKey = "Add your app secret Key here"; //Set the environment the app needs to run in here tt_net_sdk.ServiceEnvironment environment = tt_net_sdk.ServiceEnvironment.UatCert; tt_net_sdk.TTAPIOptions apiConfig = new tt_net_sdk.TTAPIOptions( environment, appSecretKey, 5000); apiConfig.ProfitLossCalculationType = tt_net_sdk.ProfitLossCalculationType.RiskWaterfall; // Start the TT API on the same thread TTNetApiFunctions tf = new TTNetApiFunctions(); Thread workerThread = new Thread(() => tf.Start(apiConfig)); workerThread.Name = "TT NET SDK Thread"; workerThread.Start(); while (true) { string input = System.Console.ReadLine(); if (input == "q") { break; } } tf.Dispose(); } catch (Exception e) { Console.WriteLine(e.Message + "\n" + e.StackTrace); } }