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

How to find if indiator is called programatically?

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

    How to find if indiator is called programatically?

    is there any way to detect in code, like this:


    this.IsProgramaticallyCalled


    so, in indicator, i could differentiate, whether that indicator is being added on Indicators WIndow (as typically what user does),
    or whether it is called in the background by another indi?

    How to find that (I mostly needed to detect that even in earliest OnStateChange event).


    I know how to achieve that with adding extra property in indi, and setting that and etc.. but i wanted to know if there is already implementation in NT, like i said in above example.
    Last edited by ttodua; 03-22-2018, 03:38 PM.

    #2
    Hello,

    Thank you for the post.

    The way I know of would be to use the Parent property and check if it is not null and its Type.

    Code:
    if(Parent != null)
    {
    	Print(Parent.GetType().Name);	
    }
    This should report a different type for each hosting situation such as a market analyzer or strategy. In my test, a strategy shows "Indicator" as the parent type so the differentiation, in that case, would be not null as the type name won't say strategy.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Jesse, you are fantastic ! !
      thank you

      Comment


        #4
        That should work

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Balage0922, Today, 07:38 AM
        0 responses
        3 views
        0 likes
        Last Post Balage0922  
        Started by JoMoon2024, Today, 06:56 AM
        0 responses
        6 views
        0 likes
        Last Post JoMoon2024  
        Started by Haiasi, 04-25-2024, 06:53 PM
        2 responses
        19 views
        0 likes
        Last Post Massinisa  
        Started by Creamers, Today, 05:32 AM
        0 responses
        6 views
        0 likes
        Last Post Creamers  
        Started by Segwin, 05-07-2018, 02:15 PM
        12 responses
        1,786 views
        0 likes
        Last Post Leafcutter  
        Working...
        X