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

total volume

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

    total volume

    Hi
    I am trying to write a indicator that gives me total volume from a specific time. For example, I want to execute a trade when total volume exceeds 80,000 counting from 2:00 PM. I was given a code to start with but I am in need of some help. below is the code that I was given. I think that code reset volume after 2:00 pm and I now need to get total volume. Any help will be appreciated.

    Thanks

    // int volumeSum = 0;
    protected override void OnBarUpdate()
    {
    if (ToTime(Time[0]) > 140000)
    {
    volumeSum += Volume[0];
    Print(volumeSum);
    }
    }

    #2
    trader413, for the days running total volume you would need to work with dataseries objects to keep a running summation. Then reset this at the start of the new session, the next step is then to limit this to your time of interest for the calculations to run.

    BertrandNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by burtoninlondon, Today, 12:38 AM
    0 responses
    9 views
    0 likes
    Last Post burtoninlondon  
    Started by AaronKoRn, Yesterday, 09:49 PM
    0 responses
    14 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Yesterday, 08:42 PM
    0 responses
    11 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Yesterday, 07:51 PM
    0 responses
    13 views
    0 likes
    Last Post strategist007  
    Started by StockTrader88, 03-06-2021, 08:58 AM
    44 responses
    3,983 views
    3 likes
    Last Post jhudas88  
    Working...
    X