Announcement

Collapse
No announcement yet.

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];

    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];

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        581 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        338 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        554 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        552 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X