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

BuySellVolume in Help guide incomplete

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

    BuySellVolume in Help guide incomplete

    Hi,

    Please look at this link:



    The syntax show something for an MA, not for the BuySellVolume. Could you please show me here what the correct syntax and available overloads are?

    Thanks much.

    #2
    Thanks for the spot and report coolmoss, we will update our docs.

    For accessing it's values you can use -

    double sells = BuySellVolume().Values[0][0];
    double sellsAndBuys = BuySellVolume().Values[1][0];
    BertrandNinjaTrader Customer Service

    Comment


      #3
      Thanks Bertrand,

      Are you sure about the syntax you posted? At first glance, the two sets of square brackets make it look like you're referencing a different time series.

      If this is correct, how would the syntax change for a multi series script?

      Comment


        #4
        Yes, they are correct - you access an array of series here, hence the double square brackets needed.

        You can of course also pass an IDataSeries to the indicator (any indicator in NT) :

        double sells = BuySellVolume(Closes[2]).Values[0][0];
        double sellsAndBuys = BuySellVolume(Closes[2]).Values[1][0];
        BertrandNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by trilliantrader, Today, 03:01 PM
        0 responses
        2 views
        0 likes
        Last Post trilliantrader  
        Started by pechtri, 06-22-2023, 02:31 AM
        9 responses
        122 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by frankthearm, 04-18-2024, 09:08 AM
        16 responses
        67 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Started by habeebft, Today, 01:18 PM
        1 response
        8 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by benmarkal, Today, 12:52 PM
        2 responses
        19 views
        0 likes
        Last Post benmarkal  
        Working...
        X