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 judysamnt7, 03-13-2023, 09:11 AM
        4 responses
        59 views
        0 likes
        Last Post DynamicTest  
        Started by ScottWalsh, Today, 06:52 PM
        4 responses
        36 views
        0 likes
        Last Post ScottWalsh  
        Started by olisav57, Today, 07:39 PM
        0 responses
        7 views
        0 likes
        Last Post olisav57  
        Started by trilliantrader, Today, 03:01 PM
        2 responses
        21 views
        0 likes
        Last Post helpwanted  
        Started by cre8able, Today, 07:24 PM
        0 responses
        10 views
        0 likes
        Last Post cre8able  
        Working...
        X