Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Bars Speed Tracking

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

    Bars Speed Tracking

    Is there a way to measure the speed movement of the bars through NinjaScript?
    I would like to compare how fast a bar is moving against the other, I thought of trying using VWAP indicators but if there is another way I would like to know.
    Thanks

    #2
    might try something like

    TimeSpan timeBetweenBars = Time[0] - Time[1];

    if you want that into a double then..

    double timeBetweenBarsInSeconds = timeBetweenBars.TotalSeconds;


    I prefer the less human readable Tick formats because the code stays simpler from start to finish..

    long timeBetweenBarsInTicks = Time[0].Ticks - Time[1].Ticks;


    HedgePlay


    Comment


      #3
      Thanks a lot hedgeplay
      I will try that !

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      31 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      19 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      9 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      17 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      20 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X