Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Time estimate

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

    Time estimate

    Good day, please tell me how to compare the time of the opening of the last two bars prices using bartype "range"?

    #2
    Hello Papercut, and thank you for your question.

    With NinjaScript, we do not actually have to filter any data through our bars. We have access to raw, uninterpreted price data. The difference between the price of the last two bars is simply

    Last[0] - Last[1]

    The order I picked is the price of the most recent bar, minus the price of the 2nd most recent bar, so that a positive value means the market is trending upward, and a negative value means the market is trending downward. If you do not care which way the market is trending and just want to know how big the change was, that is

    Math.Abs(Lasts[0] - Last[1])

    Please let us know if there are any other ways we can help.
    Jessica P.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_JessicaP View Post
      Hello Papercut, and thank you for your question.

      With NinjaScript, we do not actually have to filter any data through our bars. We have access to raw, uninterpreted price data. The difference between the price of the last two bars is simply

      Last[0] - Last[1]

      The order I picked is the price of the most recent bar, minus the price of the 2nd most recent bar, so that a positive value means the market is trending upward, and a negative value means the market is trending downward. If you do not care which way the market is trending and just want to know how big the change was, that is

      Math.Abs(Lasts[0] - Last[1])

      Please let us know if there are any other ways we can help.
      NinjaTrader_JessicaP, thanks a lot!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      52 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      142 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      160 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      96 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      276 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Working...
      X