NexusFi: Find Your Edge


Home Menu

 





Cumulative volume indicator for Multicharts - does it exist


Discussion in MultiCharts

Updated
    1. trending_up 2,197 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?
Better Renko Gaps
The Elite Circle
MC PL editor upgrade
MultiCharts
Exit Strategy
NinjaTrader
REcommedations for programming help
Sierra Chart
ZombieSqueeze
Platforms and Indicators
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
48 thanks
Just another trading journal: PA, Wyckoff & Trends
32 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
24 thanks
GFIs1 1 DAX trade per day journal
22 thanks
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,435 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