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 lightsun47, Today, 03:51 PM
    0 responses
    4 views
    0 likes
    Last Post lightsun47  
    Started by 00nevest, Today, 02:27 PM
    1 response
    8 views
    0 likes
    Last Post 00nevest  
    Started by futtrader, 04-21-2024, 01:50 AM
    4 responses
    44 views
    0 likes
    Last Post futtrader  
    Started by Option Whisperer, Today, 09:55 AM
    1 response
    13 views
    0 likes
    Last Post bltdavid  
    Started by port119, Today, 02:43 PM
    0 responses
    8 views
    0 likes
    Last Post port119
    by port119
     
    Working...
    X