static void Main()
        {
            // confirm TTAPI installation archetecture
            AboutDTS.TTAPIArchitectureCheck();

            XTraderModeTTAPIOptions envOptions = new XTraderModeTTAPIOptions();
            // Enable or Disable the TT API Implied Engine
            envOptions.EnableImplieds = false;
            envOptions.SupportPublishSOD = true;

            // Create and attach a UI Dispatcher to the main Form
            // When the form exits, this scoping block will auto-dispose of the Dispatcher
            using (var disp = Dispatcher.AttachUIDispatcher())
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);

                // Create an instance of TTAPI.
                frmSOD_ManualFill sodManualFill = new frmSOD_ManualFill();
                ApiInitializeHandler handler = new ApiInitializeHandler(sodManualFill.ttApiInitHandler);
                TTAPI.CreateXTraderModeTTAPI(disp, envOptions, handler);

                Application.Run(sodManualFill);
            }
        }
        static void Main()
        {
            // confirm TTAPI installation archetecture
            AboutDTS.TTAPIArchitectureCheck();

            XTraderModeTTAPIOptions envOptions = new XTraderModeTTAPIOptions();

            // Enable or Disable the TT API Implied Engine
            envOptions.EnableImplieds    = false;
            envOptions.SupportPublishSOD = true;

            // Create and attach a UI Dispatcher to the main Form
            // When the form exits, this scoping block will auto-dispose of the Dispatcher
            using (var disp = Dispatcher.AttachUIDispatcher())
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);

                // Create an instance of TTAPI.
                frmSOD_ManualFill    sodManualFill = new frmSOD_ManualFill();
                ApiInitializeHandler handler       = new ApiInitializeHandler(sodManualFill.ttApiInitHandler);
                TTAPI.CreateXTraderModeTTAPI(disp, envOptions, handler);

                Application.Run(sodManualFill);
            }
        }