Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

OnMarketData Printing some strange sign

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

    OnMarketData Printing some strange sign

    Given this bit of code, I am getting a strange value printing to the Output window. Attached is a screenshot. Here is the code:
    Code:
            protected override void OnMarketData(MarketDataEventArgs e)
            {
                    double price = (e.Bid + e.Ask)/2;                
                    Print(price);    
    
            }
    Click image for larger version

Name:	strange_double_value.png
Views:	203
Size:	13.2 KB
ID:	1051019
    Attached Files

    #2
    Hello swcooke,
    Thanks for your post.

    I am looking into this and will let you know when I have further information.
    Josh G.NinjaTrader Customer Service

    Comment


      #3
      Here is what I came up with. Let me know what you think:

      Code:
              // Tests a Double for Nan or Infinity
              public static bool IsNanOrInfinity(double value)
              {
                  return !Double.IsNaN(value) && !Double.IsInfinity(value);
              } 
           protected override void OnMarketData(MarketDataEventArgs e)     {             double price = (e.Bid + e.Ask)/2;             if(!IsNanOrInfinity(price))return;                             Print(price);         }

      Comment


        #4
        swcooke,

        This is expected to occur because those market data objects will not always have a value. It would be recommended to wrap you logic up in a wrapper similar to how it is done in the sample here: https://ninjatrader.com/support/help...aeventargs.htm
        Josh G.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        660 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        375 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        110 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        574 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        579 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X