Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Cannot Remove Drawn Rectangle

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

    Cannot Remove Drawn Rectangle

    Hi, NT Support Forum,

    I want to draw a rectangle across the candles when envelope of the bodies of three consecutive candles less than 10 ticks and I've written the following scripts to perform this:

    [I]protected override void Initialize()
    {
    CalculateOnBarClose= false; Overlay= true;
    }

    protected override void OnBarUpdate()
    {
    rangeTop = Math.Max(MAX(Close,3)[0],MAX(Open,3)[0]);
    rangeBot = Math.Min(MIN(Close,3)[0],MIN(Open,3)[0]);
    if (rangeTop-rangeBot<=10 * TickSize)
    {
    DrawRectangle("narrow range"+ CurrentBar, false, 3, rangeBot, -1,
    rangeTop,Color.Transparent,Color.Silver,8);
    }
    else if (rangeTop-rangeBot>10 * TickSize)
    {RemoveDrawObject("narrow range");}

    Silver rectangles appear on the screen correctly. However, when the body of the third candle moves beyond the 10-tick limit the rectangle just stops with 10 ticks height and remains there. My intention is to have it removed.

    Can anybody kindly offer some assistance on the above. Thanks.

    #2
    Thanks for the post okuricap - the remove would not work since a drawing object with the tag id narrow range would not exist > you add a current bar postfix to it in your initial call.
    BertrandNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by sukhob, 05-18-2023, 08:26 PM
    2 responses
    127 views
    0 likes
    Last Post TraderJA  
    Started by timwey, Yesterday, 10:55 AM
    4 responses
    23 views
    0 likes
    Last Post timwey
    by timwey
     
    Started by DJ888, 06-28-2024, 10:18 PM
    3 responses
    39 views
    0 likes
    Last Post AdamDJ8
    by AdamDJ8
     
    Started by ntwong, Yesterday, 08:22 PM
    0 responses
    16 views
    0 likes
    Last Post ntwong
    by ntwong
     
    Started by Sigma Cypher, 01-08-2022, 06:56 AM
    9 responses
    1,170 views
    0 likes
    Last Post Tbryant
    by Tbryant
     
    Working...
    X