Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

DrawLine using DateTime

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

    DrawLine using DateTime

    I used the sample code below expecting to get two 'draw lines' on the chart, one in blue at the Low and one in Black at the high. I did not get that.....(not sure what is wrong). I attached the screengrab, which shows the Blue line drawn using barsago, but no black line using DateTime.


    PHP Code:
    
    private DateTime    holdDT    =    new DateTime();
    
    protected override void OnBarUpdate()
    {
        if (CurrentBar == Bars.Count - 20)
            holdDT = Time[0];
                
        if (CurrentBar == Bars.Count - 3)
        {
                int wwBackBarNum = ChartBars.GetBarIdxByTime(ChartControl, holdDT);
                int myBarsAgo     = CurrentBar - wwBackBarNum;
                Draw.Line(this, "bars"+CurrentBar,true,  myBarsAgo,   Low[0],      0,   Low[0], Brushes.Blue,   DashStyleHelper.Dash,4);    
                Draw.Line(this, "time"+CurrentBar,true,     holdDT,  High[0], Time[0], High[0], Brushes.Black,  DashStyleHelper.Dash,4);    
        }
    } 
    
    Attached Files

    #2
    Hi photog53,

    Are you getting any errors in the Log tab of the Control Center?

    On the bar where the blue line is drawn, what is the value of holdDT?
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Hi photog53,

      Are you noticing that the line sometimes appears when you hit F5?

      This may be reported issue #NTEIGHT-9581 'Draw objects not drawn initially when using overload that accepts DateTime'.

      This item has been corrected for NinjaTrader 8 Beta 11.

      Once Beta 11, is available for download, please update and test for this behavior once more.
      Chelsea B.NinjaTrader Customer Service

      Comment


        #4
        Chelsea,
        No errors in the log.....
        The value of HoldDT was 13:20.... which the NT8 code "ChartBars.GetBarIdxByTime(ChartControl, holdDT);"
        found quite well but the Draw.Line code could not find.
        This issue also seems to be happening for Draw.Ray....and perhaps others.... which implicates the Issue you noted.

        Glad to see this will be corrected in beta 10.

        Thanks....

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Mindset, Today, 06:46 AM
        0 responses
        8 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, Yesterday, 05:21 PM
        0 responses
        12 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        15 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        82 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        47 views
        0 likes
        Last Post PaulMohn  
        Working...
        X