Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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:	163
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 Stanfillirenfro, Today, 07:23 AM
        3 responses
        10 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by FitSpressoHonest, Today, 09:14 AM
        0 responses
        1 view
        0 likes
        Last Post FitSpressoHonest  
        Started by Davide999, 05-18-2023, 03:55 AM
        4 responses
        557 views
        1 like
        Last Post kcwasher  
        Started by rexsole, Today, 08:39 AM
        2 responses
        7 views
        0 likes
        Last Post NinjaTrader_Erick  
        Started by cmtjoancolmenero, Yesterday, 03:58 PM
        6 responses
        29 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Working...
        X