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 cre8able, Today, 01:16 PM
        2 responses
        8 views
        0 likes
        Last Post cre8able  
        Started by chbruno, 04-24-2024, 04:10 PM
        3 responses
        48 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by samish18, Today, 01:01 PM
        1 response
        6 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Started by WHICKED, Today, 12:56 PM
        1 response
        8 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by WHICKED, Today, 12:45 PM
        1 response
        11 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Working...
        X