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 argusthome, 03-08-2026, 10:06 AM
      0 responses
      65 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      41 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      23 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      26 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      52 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X