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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        672 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        379 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        111 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        575 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        582 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X