Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to move a DrawObject to the right.

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

    How to move a DrawObject to the right.

    I have the following line of code in an indicator. How can I make that DrawObject be re-drawn about one hour into the future ( so that it is not obstructing view of the current bars ).

    DrawFibonacciExtensions("FibExtDn", false, anchor1BarsAgo, anchor1Y,
    anchor2BarsAgo, anchor2Y, anchor3BarsAgo, anchor3Y);


    I tried adding this line ...
    DrawFibonacciExtensions("FibExtDn", false, anchor1BarsAgo, anchor1Y,
    anchor2BarsAgo, DateTime.Now.AddMilliseconds(360000), anchor3BarsAgo, anchor3Y);

    But that didn't work.

    #2
    Hello vlc,

    Using a negative bars ago value will work but only up to a certain point.

    DrawFibonacciExtensions("FibExtDn", false, anchor1BarsAgo, anchor1Y,
    anchor2BarsAgo, anchor2Y, -10, anchor3Y);

    This would put the 3rd anchor 10 bars ahead of the chart (you would probably need to scroll to see it.

    (The first two anchors do the measurement so leave these on the bars you are measuring)

    Keep in mind, that if you place any of the anchors more than one chart length outside of the chart, the drawing object will disappear.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    65 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    41 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    23 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    26 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    52 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X