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 Hwop38, 05-04-2026, 07:02 PM
      0 responses
      155 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      307 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      244 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      346 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      176 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X