I decided to go ahead and try to write my own indicator first. I ended up with
the following:
Mon:=If(DayOfWeek()=1,V,0);
Tue:=If(DayOfWeek()=2,V,0);
Wed:=If(DayOfWeek()=3,V,0);
Thu:=If(DayOfWeek()=4,V,0);
Fri:=If(DayOfWeek()=5,V,0);
Mon;Tue;Wed;Thu;Fri;
I'm using EOD data. If there are multiple bricks of one day MS shows the volume
as multiple bars, which works well for my purposes. I set the indicator as a
histogram and then color-coded each day and saved as a template. Below is a
photo of how it looks. Mon - Fri are color coded as green, yellow, red, black,
blue.
http://i22.photobucket.com/albums/b313/Hcour/GBPDV1.jpg
So it works well for single or multiple bricks of one day, but it doesn't work
if one brick last multiple days, in which case the volume doesn't show up
correctly, MS doesn't total the volume for the multiple days.
My coding skills are very basic. Is there any way to modify my code so that MS
will total and display the correct volume for bricks lasting multiple days?
Thanks!