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 GussJ, 03-04-2020, 03:11 PM
      11 responses
      3,227 views
      0 likes
      Last Post xiinteractive  
      Started by andrewtrades, Today, 04:57 PM
      1 response
      13 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by chbruno, Today, 04:10 PM
      0 responses
      7 views
      0 likes
      Last Post chbruno
      by chbruno
       
      Started by josh18955, 03-25-2023, 11:16 AM
      6 responses
      440 views
      0 likes
      Last Post Delerium  
      Started by FAQtrader, Today, 03:35 PM
      0 responses
      11 views
      0 likes
      Last Post FAQtrader  
      Working...
      X