NexusFi: Find Your Edge


Home Menu

 





Cumulative volume indicator for Multicharts - does it exist


Discussion in MultiCharts

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




 
Search this Thread

Cumulative volume indicator for Multicharts - does it exist

  #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?
How to apply profiles
Traders Hideout
REcommedations for programming help
Sierra Chart
NexusFi Journal Challenge - May 2024
Feedback and Announcements
Quant vue
Trading Reviews and Vendors
Better Renko Gaps
The Elite Circle
 
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,436 since Apr 2013
Thanks Given: 482
Thanks Received: 1,628

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 Twitter 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


© 2024 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 - Privacy Policy - Downloads - Top
no new posts