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 PaulMohn, Today, 03:49 AM
        0 responses
        7 views
        0 likes
        Last Post PaulMohn  
        Started by inanazsocial, Today, 01:15 AM
        1 response
        9 views
        0 likes
        Last Post NinjaTrader_Jason  
        Started by rocketman7, Today, 02:12 AM
        0 responses
        10 views
        0 likes
        Last Post rocketman7  
        Started by dustydbayer, Today, 01:59 AM
        0 responses
        4 views
        0 likes
        Last Post dustydbayer  
        Started by trilliantrader, 04-18-2024, 08:16 AM
        5 responses
        23 views
        0 likes
        Last Post trilliantrader  
        Working...
        X