Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Times and Sales data with Ninja Script?

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

    Times and Sales data with Ninja Script?

    Hi,
    Is there any way to have access to the time and sales data from Ninja Script?
    Thanks

    #2
    Please take a look at this reference sample: http://www.ninjatrader-support.com/v...ead.php?t=3478
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Thanks for your answer Josh.

      I had a look at the example you referenced but I cannot see how to deduce the sales or buys.

      OnMarketDepth gives you the change in volume in the ask and bid. Every change in an entry doesn't mean a sale or buy , as it will include cancelations and new orders.

      Is there any way I can get the last price sale or buy and its volume?

      Thanks
      PS: I can get the difference in volume on the Bar Update (changing the refresh of the bar to be minimal) but that will be all the buys and sales for that period of time (refresh of the bar) so it won't be the time and sales either.

      Comment


        #4
        Check out the OnMarketData event which probably is what you are looking for: http://www.ninjatrader-support.com/H...arketData.html

        Comment


          #5
          That works

          protected override void OnMarketData(MarketDataEventArgs e)
          {
          // Print some data to the Output window
          if (e.MarketDataType == MarketDataType.Last)
          Print("Last = " + e.Price + " " + e.Volume);


          I can get the last sale and its volume.

          Thanks

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          571 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          331 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          101 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          549 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          549 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X