Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Duration of volume bar (in seconds)

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

    Duration of volume bar (in seconds)

    Hello,

    What is the best way to calculate the duration in seconds of a volume based bar?

    My first inclination would be to subtract Time[1] - Time[0] and then convert that to an int.

    Is this the right way to go about this?

    If not, what is the proper way to do this?

    Thanks!

    #2
    Hello WalterSkinner,

    Thanks for your post.

    Yes, that would work.

    You have some options depending on what size of number you are looking for.

    (Time[0] - Time[1]).TotalMilliseconds;

    (Time[0] - Time[1]).TotalSeconds;

    (Time[0] - Time[1]).TotalMinutes;

    (Time[0] - Time[1]).TotalHours;

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by sjsj2732, Yesterday, 04:31 AM
    0 responses
    22 views
    0 likes
    Last Post sjsj2732  
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    280 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    279 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    130 views
    1 like
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    90 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Working...
    X