Is there any way to determine that indicator was called from starategy?
I have this code in my indicator:
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;
So I want to use something like "Historical" property, for example:
if( !IsCalledFromStrategy) o.Locked = false;

Comment