Announcement

Collapse
No announcement yet.

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.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    579 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    334 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 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
    551 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X