Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mongo, Today, 11:05 AM
    4 responses
    14 views
    0 likes
    Last Post Mongo
    by Mongo
     
    Started by traderqz, Today, 12:06 AM
    7 responses
    13 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by Skifree, Today, 03:41 AM
    5 responses
    13 views
    0 likes
    Last Post Skifree
    by Skifree
     
    Started by traderqz, Yesterday, 09:06 AM
    5 responses
    34 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by guillembm, Today, 11:25 AM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X