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 MacDad, 02-25-2024, 11:48 PM
    7 responses
    158 views
    0 likes
    Last Post loganjarosz123  
    Started by Belfortbucks, Today, 09:29 PM
    0 responses
    7 views
    0 likes
    Last Post Belfortbucks  
    Started by zstheorist, Today, 07:52 PM
    0 responses
    7 views
    0 likes
    Last Post zstheorist  
    Started by pmachiraju, 11-01-2023, 04:46 AM
    8 responses
    151 views
    0 likes
    Last Post rehmans
    by rehmans
     
    Started by mattbsea, Today, 05:44 PM
    0 responses
    6 views
    0 likes
    Last Post mattbsea  
    Working...
    X