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

Getting Market Depth volume into strategy.

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

    #16
    Hello,

    I'm not sure how much tweaking you've done to the original version in this thread, but I was able to make a few changes to resolve both of these issues.

    The first thing that I noticed is that VolAskTot and VolBidTot begin at 0. So, the first time you try to divide the two, you are dividing 0 by 0. To fix this, I just added the condition "if(VolAskTot > 0 && VolBidTot > 0)" to make sure the division is never done when either value is 0.

    Also, I noticed that the condition "if (e.Operation == Operation.Update)" was just floating out there all by itself. It didn't have either brackets or a single statement. The way it was coded, it looks like it would only govern the very next "if" statement, which I don't think was intended. I added brackets under this condition to encapsulate all of the e.Position checks, and all seems to be working now.

    I've attached an updated version of the script to this post, with Prints showing the VolAsk0, VolBid2, etc. values and other important values throughout.

    Please let me know if I can assist further.
    Attached Files
    Dave I.NinjaTrader Product Management

    Comment


      #17
      Dave,

      This code is not working in ninjatrader 8 beta 8.0.0.5

      What do I need to change to make it work correctly?
      Attached Files

      Comment


        #18
        Hello Lisa1980,

        Thank you for your patience.

        Your code was built for NinjaTrader 7. I made changes so that it will compile in NinjaTrader 8, but you will need to test it to verify it is working as expected.
        Attached Files

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by love2code2trade, 04-17-2024, 01:45 PM
        4 responses
        31 views
        0 likes
        Last Post love2code2trade  
        Started by cls71, Today, 04:45 AM
        2 responses
        10 views
        0 likes
        Last Post eDanny
        by eDanny
         
        Started by proptrade13, Today, 11:06 AM
        0 responses
        5 views
        0 likes
        Last Post proptrade13  
        Started by kulwinder73, Today, 10:31 AM
        1 response
        10 views
        0 likes
        Last Post NinjaTrader_Erick  
        Started by RookieTrader, Today, 09:37 AM
        3 responses
        15 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Working...
        X