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 r68cervera, Today, 05:29 AM
    0 responses
    2 views
    0 likes
    Last Post r68cervera  
    Started by geddyisodin, Today, 05:20 AM
    0 responses
    3 views
    0 likes
    Last Post geddyisodin  
    Started by JonesJoker, 04-22-2024, 12:23 PM
    6 responses
    35 views
    0 likes
    Last Post JonesJoker  
    Started by GussJ, 03-04-2020, 03:11 PM
    12 responses
    3,239 views
    0 likes
    Last Post Leafcutter  
    Started by AveryFlynn, Today, 04:57 AM
    0 responses
    6 views
    0 likes
    Last Post AveryFlynn  
    Working...
    X