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(ChartControlholdDT);
                
    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 funk10101, Today, 09:43 PM
        0 responses
        3 views
        0 likes
        Last Post funk10101  
        Started by pkefal, 04-11-2024, 07:39 AM
        11 responses
        36 views
        0 likes
        Last Post jeronymite  
        Started by bill2023, Yesterday, 08:51 AM
        8 responses
        44 views
        0 likes
        Last Post bill2023  
        Started by yertle, Today, 08:38 AM
        6 responses
        26 views
        0 likes
        Last Post ryjoga
        by ryjoga
         
        Started by algospoke, Yesterday, 06:40 PM
        2 responses
        24 views
        0 likes
        Last Post algospoke  
        Working...
        X