Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Unable to generate Alert Log entry since the provided brush used was unfrozen

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Unable to generate Alert Log entry since the provided brush used was unfrozen

    Getting this error from an entry-only strategy I created that hands off an ATM order.

    Had been working fine, but getting this error today.

    My alert code was taken from your ATM sample code:

    Code:
     NinjaTrader.NinjaScript.Alert.AlertCallback(NinjaTrader.Cbi.Instrument.GetInstrument("MES 09-20"),
    this, "LongEntryAlert", NinjaTrader.Core.Globals.Now, Priority.High, msg,
    NinjaTrader.Core.Globals.InstallDir + @"\sounds\Alert1.wav",
    new SolidColorBrush(Colors.Blue), new SolidColorBrush(Colors.White), 0);
    How do I resolve?

    #2
    Hello Wick Wrangler,

    This is because you are creating new SolidColorBrush's rather than using the static brush. You can just use Brushes.Blue and Brushes.White here.

    I see that this is in the help guide sample so I will forward that to be updated.

    Code:
    NinjaTrader.NinjaScript.Alert.AlertCallback(NinjaTrader.Cbi.Instrument.GetInstrument("MSFT"), this, "someId", NinjaTrader.Core.Globals.Now, Priority.High, "message", NinjaTrader.Core.Globals.InstallDir+@"\sounds\Alert1.wav", Brushes.Blue, Brushes.White, 0);

    I look forward to being of further assistance.

    Comment


      #3
      Great, thanks.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      119 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      62 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      41 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      45 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      82 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X