Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Error referencing Time[n] in OnMouseUp EventHandler

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

    Error referencing Time[n] in OnMouseUp EventHandler

    I am getting a consistent ArgumentOutOfRange Exception whenever I reference Time[CurrentBar-n] in my OnMouseUp(object sender, MouseEventArgs e) EventHandler. "n" is less than CurrentBar, so it should be within range..

    I don't have any problem working directly with the index numbers directly, but I need to store the values as DateTimes.

    I was able to do this in NT7 without any problems. Is a different approach needed in NT8?
    Last edited by palinuro; 12-12-2015, 09:32 PM.

    #2
    Originally posted by palinuro View Post
    I am getting a consistent ArgumentOutOfRange Exception whenever I reference Time[CurrentBar-n] in my OnMouseUp(object sender, MouseEventArgs e) EventHandler. "n" is less than CurrentBar, so it should be within range..

    I don't have any problem working directly with the index numbers directly, but I need to store the values as DateTimes.

    I was able to do this in NT7 without any problems. Is a different approach needed in NT8?
    There is some rocket science used to ensure that the currentbar is always up to date when using a core event handler like OnBarUpdate/OnMarketData, etc. When you're using a custom method like in your OnMouseUp, the price series array may be unreliable.

    You can either use the absolute index methods like GetTime(idx) which is the recommended way to go, or if you must use Time[idx] for whatever reason - you can try catching up the current bar array yourself, but this is not a documented solution.

    Code:
    		private void onMouseDown(object sender, MouseEventArgs e)
    		{
    			// a very simplified way to sync the current bar
    			for (int i = 0; i < BarsArray.Length; i++)
    			{
    				BarsArray[i].CurrentBar = CurrentBars[i];				
    			}
    						
    			Print(Time[5]);
    		}
    Last edited by NinjaTrader_Matthew; 12-17-2015, 09:06 AM.
    MatthewNinjaTrader Product Management

    Comment


      #3
      thanks Matthew, i switched to GetTime() and it works fine.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Sparkyboy, Today, 10:57 AM
      1 response
      5 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by swestendorf, Today, 11:14 AM
      1 response
      2 views
      0 likes
      Last Post swestendorf  
      Started by TheMarlin801, 10-13-2020, 01:40 AM
      21 responses
      3,917 views
      0 likes
      Last Post Bidder
      by Bidder
       
      Started by timmbbo, 07-05-2023, 10:21 PM
      3 responses
      156 views
      0 likes
      Last Post grayfrog  
      Started by Lumbeezl, 01-11-2022, 06:50 PM
      30 responses
      812 views
      1 like
      Last Post grayfrog  
      Working...
      X