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 Hwop38, 05-04-2026, 07:02 PM
    0 responses
    164 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    317 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    245 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    350 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    179 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X