private async void HandleStartupComplete(StartupCompleteMessage message)
        {
            if (!message.IsComplete)
            {
                return;
            }

            //No code currently needed here
        }
        private async void HandleStartupComplete(StartupCompleteMessage message)
        {
            if (!message.IsComplete)
            {
                return;
            }

            Messenger.Default.Send <LocalModeMessage>(new LocalModeMessage(_localMode));

            if (!_localMode)
            {
                await CheckDatabases();
            }

            await LoadSecurityDatabase();
        }
        private async void HandleStartupComplete(StartupCompleteMessage message)
        {
            if (!message.IsComplete)
            {
                return;
            }

            if (_localMode)
            {
                return;
            }


            await LoadLimitOrdersFromDatabase();
            await BuildDatabaseTaxlots();

            GetPositionsFromTaxlots();
        }