Thanks in advance,
if (
entry.IsEntry != entry.IsEntryStrategy ||
entry.IsExit != entry.IsExitStrategy ||
entry.Name == null
)
{
cc.Dispatcher.InvokeAsync(new Action(() =>
{
NinjaTrader.Gui.Tools.NTMessageBoxSimple.Show(Window.GetWindow(cc.OwnerChart as DependencyObject),
"\r\n" +
" Discrepancy in DataBase\n\n" +
" Check ID # " + ID,
" AddOns.Methods.getInstList() Line " + LN(),
MessageBoxButton.OK, MessageBoxImage.Error);
}));
}

Comment