Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to determine that indicator was called from strategy?

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

    How to determine that indicator was called from strategy?

    Hello.

    Is there any way to determine that indicator was called from starategy?

    I have this code in my indicator:
    Code:
    IDrawObject o = DrawText( segment_number, true, my_text, bars_ago, y, pixel_offset, Color.Black, new Font("Arial", 13, FontStyle.Bold), StringAlignment.Center, Color.Transparent, Color.Transparent, 0);						
    
    o.Locked = false;
    And last string causing error when I indicator calls from starategy.
    So I want to use something like "Historical" property, for example:

    Code:
    if( !IsCalledFromStrategy) o.Locked = false;
    Last edited by fx.practic; 08-05-2014, 04:35 AM.
    fx.practic
    NinjaTrader Ecosystem Vendor - fx.practic

    #2
    fx.practic, I would just for example include a bool parameter in your indicator that would control the action giving you an issue. That way you can set the bool as needed in your actual indicator method call then.

    Comment


      #3
      Yes, this is the way, thank You.
      fx.practic
      NinjaTrader Ecosystem Vendor - fx.practic

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      596 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      343 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      556 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      554 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X