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 thread, 04-15-2024, 11:58 PM
        3 responses
        48 views
        0 likes
        Last Post Georg1o
        by Georg1o
         
        Started by leojimenezp, 04-20-2024, 05:49 PM
        4 responses
        47 views
        0 likes
        Last Post leojimenezp  
        Started by nicthe, Today, 09:24 AM
        1 response
        5 views
        0 likes
        Last Post nicthe
        by nicthe
         
        Started by samish18, Today, 10:13 AM
        0 responses
        6 views
        0 likes
        Last Post samish18  
        Started by kenz987, Yesterday, 10:20 AM
        2 responses
        13 views
        0 likes
        Last Post kenz987
        by kenz987
         
        Working...
        X