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 Balage0922, Today, 07:38 AM
        0 responses
        1 view
        0 likes
        Last Post Balage0922  
        Started by JoMoon2024, Today, 06:56 AM
        0 responses
        6 views
        0 likes
        Last Post JoMoon2024  
        Started by Haiasi, 04-25-2024, 06:53 PM
        2 responses
        19 views
        0 likes
        Last Post Massinisa  
        Started by Creamers, Today, 05:32 AM
        0 responses
        6 views
        0 likes
        Last Post Creamers  
        Started by Segwin, 05-07-2018, 02:15 PM
        12 responses
        1,786 views
        0 likes
        Last Post Leafcutter  
        Working...
        X