Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to get ask, bid using OnMarketDepth method

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

    How to get ask, bid using OnMarketDepth method

    Hello

    How to get ask, bid using OnMarketDepth method

    protected override void OnMarketDepth(MarketDepthEventArgs e)
    {

    if (e.MarketDataType == MarketDataType.Ask&& e.Operation == Operation.Update)

    askPrice = e.Price;

    else if (e.MarketDataType == MarketDataType.Bid && e.Operation == Operation.Update)
    bidPrice = e.Price;


    Does it right code?
    Last edited by Alexpl; 11-07-2012, 12:58 PM.

    #2
    Hello Alexpl,

    You may want to change conditions for the askPrice set.For example:

    Originally posted by Alexpl View Post
    if (e.MarketDataType == MarketDataType.Last && e.Operation == Operation.Update)

    askPrice = e.Price;
    to
    Code:
    if (e.MarketDataType == MarketDataType.Ask && e.Operation == Operation.Update) 
    		
    		askPrice = e.Price;
    See the following link for more information about the OnMarketDepth() method.
    http://www.ninjatrader.com/support/h...arketdepth.htm

    Let us know if we can be of further assistance.
    JCNinjaTrader Customer Service

    Comment


      #3
      Thanks . I have found mistake.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      29 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      117 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      69 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      227 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      309 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X