Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

last tick of bar

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

    last tick of bar

    Using tick charts, is there a way to check for the last tick of the bar? Looking for the tick before isFirstTickOfBar is true.

    Thank you.

    #2
    Hello,

    There wouldn't be a specific way to get the Last tick of a bar as far as I am aware. The tick that opens a bar is the same tick that closes a bar so the events are somewhat the same.

    For price values, generally, you would wait for the first tick of a bar and reference the 1 Bars Ago value on the tick series to get the Last tick of the last bars price.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Originally posted by imalil View Post
      Using tick charts, is there a way to check for the last tick of the bar? Looking for the tick before isFirstTickOfBar is true.

      Thank you.
      This would not work for minute, volume, range or renko bars, but for tick bars you can simply count the ticks. However, this is only possible, if the indicator is set to Calculate.OnEachTick or if it is used in tick replay mode.

      Code:
      bool isLastTickOfBar = false; 
      if(BarsArray[0].BarsPeriod.BarsPeriodType == BarsPeriodType.Tick
         && (Calculate == Calculate.OnEachTick || IsTickReplays[0] == true))
      {
           if(IsFirstTickOfBar)
                tickCount = 1;
           else
                tickCount = tickCount + 1;
           if(tickCount ==  BarsPeriods[0].Value)
                isLastTickOfBar = true;
      }
      The code is not tested. I just wanted to show how this could be done.
      Last edited by Harry; 07-16-2017, 01:47 PM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Shansen, 08-30-2019, 10:18 PM
      24 responses
      938 views
      0 likes
      Last Post spwizard  
      Started by Max238, Today, 01:28 AM
      0 responses
      3 views
      0 likes
      Last Post Max238
      by Max238
       
      Started by rocketman7, Today, 01:00 AM
      0 responses
      2 views
      0 likes
      Last Post rocketman7  
      Started by wzgy0920, 04-20-2024, 06:09 PM
      2 responses
      27 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, 02-22-2024, 01:11 AM
      5 responses
      32 views
      0 likes
      Last Post wzgy0920  
      Working...
      X