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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    35 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    13 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    19 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    21 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X