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 CarlTrading, Yesterday, 11:51 AM
      0 responses
      10 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, Yesterday, 11:48 AM
      0 responses
      11 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-25-2026, 09:53 PM
      0 responses
      11 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 03-25-2026, 09:51 PM
      0 responses
      9 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 03-23-2026, 11:13 AM
      0 responses
      16 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X