Announcement

Collapse
No announcement yet.

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.

    Comment


      #3
      Jesse, you are fantastic ! !
      thank you

      Comment


        #4
        That should work

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        81 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        42 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        64 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        68 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        55 views
        0 likes
        Last Post CarlTrading  
        Working...
        X