Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
error alert boxes
Collapse
X
-
Hello franatas,
Thank you for your post.
You can use try/catch blocks to trap exceptions.
Please see the example script below:
Within try/catch block, you can use Log() to write a message to the Log with notification window with LogLevel.Alert:
Or an alert:
Please see this Help Guide page on Alert and Debug concepts:
If you have any further questions, please let us know.
-
if ((cantidadSeleccionada1 > 0 && profit1 == 0) || (cantidadSeleccionada2 > 0 && profit2 == 0) || (cantidadSeleccionada3 > 0 && profit3 == 0) || (cantidadSeleccionada4 > 0 && profit4 == 0) || stop == 0)
{
NinjaTrader.NinjaScript.Alert.AlertCallback(NinjaT rader.Cbi.Instrument.GetInstrument("MSFT"), this, "replicador", NinjaTrader.Core.Globals.Now, Priority.Medium, "Replicador Compruebe los Profit y Stop",
NinjaTrader.Core.Globals.InstallDir + @"\sounds\Alert1.wav", new SolidColorBrush(Colors.Blue), new SolidColorBrush(Colors.White), 0);
Application.Current.Dispatcher.InvokeAsync(new Action(() => {
NinjaTrader.Gui.Tools.NTMessageBoxSimple.Show(Wind ow.GetWindow(ChartControl.OwnerChart as DependencyObject), "Message Body", "Message Header", MessageBoxButton.OK, MessageBoxImage.None);
}));
ejecutarordenes = false;
ComprasButton.IsEnabled = true;
VentasButton.IsEnabled = true;
}
Gravedad Código Descripción Proyecto Archivo Línea Estado suprimido
Error CS0120 Se requiere una referencia de objeto para el campo, método o propiedad 'ChartControl.OwnerChart' no estáticos NinjaTrader.Custom C:\Users\Franatas\Documents\NinjaTrader 8\bin\Custom\AddOns\FranatasReplicador21V3.cs 1473 Activo
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
43 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
30 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
48 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
38 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment