NexusFi: Find Your Edge


Home Menu

 





Cumulative volume indicator for Multicharts - does it exist


Discussion in MultiCharts

Updated
    1. trending_up 2,761 views
    2. thumb_up 2 thanks given
    3. group 3 followers
    1. forum 3 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
 
PositiveDeviant's Avatar
 PositiveDeviant 
United Kingdom
 
Experience: Intermediate
Platform: Multicharts
Trading: Dow
Posts: 587 since Nov 2010
Thanks Given: 257
Thanks Received: 256

Hi there,

I'm looking for what should be a fairly simple indicator. One that plots the volume as it accumulates throughout the trading day.

So if during the first bar of the day there are 100 contracts traded and during the second bar there are 200 contracts traded the first bar of the indicator would show 100 and the second 300 and so on and so forth.


"The primary thing required to obtain what you want from life, is simply the will to pursue it, and the faith to believe it is possible." - Author Unknown

"The ability to maintain discipline and stick to the rules is the hallmark of the experienced successful trader" - Curtis Faith
Visit my NexusFi Trade Journal Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Warsh Opens Today, Hormuz June 19 -- WTI Below $80, Fran …
Prediction Markets & Event Contracts
Warsh Confirmed 54-45 on PPI Day -- 97% Say He Holds in …
Prediction Markets & Event Contracts
Iran Fired a Missile at Israel Last Night. The $8M June …
Prediction Markets & Event Contracts
Warsh Drops Easing Bias, December Hike Now Above 50% -- …
Prediction Markets & Event Contracts
Penalties in Budapest, Peace Deadline in Tehran: Arsenal …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
16 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
2 thanks
CME Expands 24/7 Trading to WTI Crude Oil and Gold -- We …
1 thanks
30 Sessions
1 thanks
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643

Hi PositiveDeviant,

there probably is something floating around, but your indicator is fairly easy to do. Something like this should get you started.
 
Code
Variables: TotalDailyVolume(0), 
MyVolume(0);

//use the correct volume depending on the bar type
if Bartype >= 2 and Bartype < 5 then
 MyVolume = Volume 
else
 MyVolume = Ticks;

//reset volume on date change
if Date <> Date[1] then
 TotalDailyVolume = 0;

//sum the volume for each bar
TotalDailyVolume = TotalDailyVolume + MyVolume;

Plot1(TotalDailyVolume, "TotalVolume");
Happy Holidays,
ABCTG


Follow me on X Reply With Quote
Thanked by:
  #3 (permalink)
shanemcdonald28
new york
 
Posts: 355 since Mar 2012
Thanks Given: 665
Thanks Received: 582


doesnt the cumulative delata do that ?

shane


Reply With Quote
  #4 (permalink)
 
PositiveDeviant's Avatar
 PositiveDeviant 
United Kingdom
 
Experience: Intermediate
Platform: Multicharts
Trading: Dow
Posts: 587 since Nov 2010
Thanks Given: 257
Thanks Received: 256


ABCTG View Post
Hi PositiveDeviant,

there probably is something floating around, but your indicator is fairly easy to do. Something like this should get you started.
 
Code
Variables: TotalDailyVolume(0), 
MyVolume(0);

//use the correct volume depending on the bar type
if Bartype >= 2 and Bartype < 5 then
 MyVolume = Volume 
else
 MyVolume = Ticks;

//reset volume on date change
if Date <> Date[1] then
 TotalDailyVolume = 0;

//sum the volume for each bar
TotalDailyVolume = TotalDailyVolume + MyVolume;

Plot1(TotalDailyVolume, "TotalVolume");
Happy Holidays,
ABCTG

That's great! I really appreciate it.

Enjoy the holidays!


"The primary thing required to obtain what you want from life, is simply the will to pursue it, and the faith to believe it is possible." - Author Unknown

"The ability to maintain discipline and stick to the rules is the hallmark of the experienced successful trader" - Curtis Faith
Visit my NexusFi Trade Journal Started this thread Reply With Quote




Last Updated on December 24, 2013


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts