Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Monitor for certain thresholds and open/update values in separate window

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

    Monitor for certain thresholds and open/update values in separate window

    Is there a code example of creating a ninjatrader window that has a gauge that is updated via an indicator monitoring for certain values?

    #2
    Hello WHICKED,

    I am not aware of a specific sample of that but you could easily pass a value to a window you created using a public property in the windows class. There is a sample of creating a new window in the following link: https://ninjatrader.com/support/help...t_overview.htm

    The addon sample contains the details on how to create a NT style window. You could make a new window using that approach which is opened through the control center or you could use the same general code (window class and button handler code to show the window) from other scripts like an indicator.

    To pass data to a window, if you have an instance of the window you would just use that:

    myWindow.MyPublicProperty = someValue;

    If you don't have an instance to the window you could find your window in the NinjaTrader.Core.Globals.AllWindows collection and get the instance from there.

    In the window class you could use a Timer to check the property and update the UI. You could also make part of the public property set the UI by setting the controls value in the setter.



    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    592 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    343 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    103 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    556 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    554 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X