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:	162
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 alifarahani, Today, 09:40 AM
        6 responses
        36 views
        0 likes
        Last Post alifarahani  
        Started by Waxavi, Today, 02:10 AM
        1 response
        17 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Started by Kaledus, Today, 01:29 PM
        5 responses
        14 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by Waxavi, Today, 02:00 AM
        1 response
        12 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Started by gentlebenthebear, Today, 01:30 AM
        3 responses
        17 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Working...
        X