Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Bid and Ask data

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

    Bid and Ask data

    Is there a way to collect Bid and Ask data historically.

    I know I can get it through the OnMarketData but that has to be
    on real time data.



    Thanks

    #2
    Hello,

    If you dont mind me asking who is your current data feed provider. There are some data feed providers that provide this automatically without the need to record it and will provide it has historical data. Understanding section and then you will see historical Bid and Ask data.




    Let me know if I can be of further assistance.
    BrettNinjaTrader Product Management

    Comment


      #3
      Brett


      My data provider is Zen Fire. I would have access to historical Bid and Ask tick data.

      How would I get these data ? OnMarketData is used only on real time data, right ?



      Thanks

      Comment


        #4
        What I need to know is if the last price has been traded at bid or at the offer.

        So what is the syntax to access the bid and ask data ?
        Last edited by blar58; 02-28-2011, 04:18 PM.

        Comment


          #5
          You can access it from OnMarketData in real-time indeed, it is in the event args
          Code:
          protected override void OnMarketData(MarketDataEventArgs e)
          {
              if (e.MarketDataType == MarketDataType.Ask)
                   Print("Ask = " + e.Price );
              else if (e.MarketDataType == MarketDataType.Bid)
                   Print("Bid = " + e.Price );
          }
          You'll probably need to compare your Last price's time to e.Time to verify it's correct.

          edit: there is also MarketDataType.Last!
          Last edited by Dexter; 02-28-2011, 05:08 PM.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          576 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          334 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
          553 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          551 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X