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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    72 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    39 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    63 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    63 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Working...
    X