Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

above/below market stats for bar

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

    above/below market stats for bar

    In the BuySellVolume indicator I see where I can access the buys and sells. via
    private System.Collections.ArrayList alBuys = new System.Collections.ArrayList();
    private System.Collections.ArrayList alSells = new System.Collections.ArrayList();

    Can I access above or below market stats or trades like Time and Sales does?

    Thanks

    #2
    ct, I'm not sure I understand your question. The two array lists you've highlighted do not contain any information other than the buy volume and the sell volume.

    In order to obtain Level II information other than the best bid/ask, you will need to create your own Level II book.

    To use Time & Sales information, you will need to work with OnMarketData():
    Code:
    protected override void OnMarketData(MarketDataEventArgs e)
            {
                if (e.MarketDataType == MarketDataType.Last)
                    Print(e.Time + "\t" + e.Price + "\t" + e.Volume);
            }
    AustinNinjaTrader Customer Service

    Comment


      #3
      Austin

      Thanks that pointed me in a direction.

      cheers.

      Comment

      Latest Posts

      Collapse

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