Volume Up&Down

Questions about MultiCharts and user contributed studies.
User avatar
tucciotrader
Posts: 34
Joined: 31 Jul 2010

Volume Up&Down

Postby tucciotrader » 11 Aug 2010

Hi,

I have noticed MultiCharts has a ballon button that when enabled it gives you information about a given candle just moving the mouse over it. This ballon includes Up&Down volume for that given candle...that's interesting because the regular volume indicator will just show the total volume instead.I was wondering if there was any way to have the volume indicator plot a split volume made up of Up&Down volume, that's to say, a volume line coloured both red for the down volume and green for the up...do you think this can actually be done?

thanks

User avatar
RobotMan
Posts: 375
Joined: 12 Jul 2006
Location: Los Altos, California, USA
Has thanked: 31 times
Been thanked: 13 times
Contact:

Re: Volume Up&Down

Postby RobotMan » 12 Aug 2010

Hi tucciotrader,

On intra-day data (except minute based bars), you can use the reserved words, "UpTicks" and "DownTicks" (both positive integers) in an indicator to see volume split. Make sure that you configure your data stream to "build volume on" either "Trade Volume" (number of shares or contracts traded) or "Tick Count" (number of trades).
Ie: (if using the prebuilt "Custom 2 Lines")
Plot1Formula: UpTicks
Plot2Formula: -DownTicks
and set the "style" of both to "histogram"

Ie: (if writing a custom indicator in PowerLanguage):
Plot1(Upticks,"Up Volume");
Plot2(-DownTicks,"Down Volume");

Hope that helps.

User avatar
tucciotrader
Posts: 34
Joined: 31 Jul 2010

Re: Volume Up&Down

Postby tucciotrader » 12 Aug 2010

Please, have a look at this video: http://www.youtube.com/watch?v=GQFcFQYq ... r_embedded

You can see an indicator called Volume Bias on the top-right of the chart. It basically shows up-and-down total volumes since the beginning of the trading day. I'd like to do something like that also by having a second Volume Bias showing last candle up and down volumes...

that'd be really great!

User avatar
TJ
Posts: 7742
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Volume Up&Down

Postby TJ » 12 Aug 2010


User avatar
tucciotrader
Posts: 34
Joined: 31 Jul 2010

Re: Volume Up&Down

Postby tucciotrader » 12 Aug 2010

Well, that's really what I was looking for! thanks a lot!

User avatar
TJ
Posts: 7742
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Volume Up&Down

Postby TJ » 12 Aug 2010

you are welcome

User avatar
tucciotrader
Posts: 34
Joined: 31 Jul 2010

Re: Volume Up&Down

Postby tucciotrader » 12 Aug 2010

One more question. The following might sound silly though. As you can see in the attached image file I get volume indicator updating volumes like x.00 how can I remove that .00 ??

thanks
Attachments
volumeprofile_live.PNG
(40.1 KiB) Downloaded 1062 times

User avatar
TJ
Posts: 7742
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Volume Up&Down

Postby TJ » 12 Aug 2010

One more question. The following might sound silly though. As you can see in the attached image file I get volume indicator updating volumes like x.00 how can I remove that .00 ??

thanks
right click on the indicator,
Format Study > Scaling > General > No of digits after decimal

User avatar
tucciotrader
Posts: 34
Joined: 31 Jul 2010

Re: Volume Up&Down

Postby tucciotrader » 12 Aug 2010

thanks

ppc
Posts: 42
Joined: 04 Nov 2014
Has thanked: 4 times

Re: Volume Up&Down

Postby ppc » 20 Feb 2016

I applied it in both ESH6 and HSIG16 but showed different results. ESH6 can show downticks data while HSIG16 always show ZERO even it dropped. Anyone can help? Thanks.
Attachments
HSIG16.png
(2.61 KiB) Downloaded 1022 times
ESH6.png
(5.17 KiB) Downloaded 1022 times

User avatar
TJ
Posts: 7742
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Volume Up&Down

Postby TJ » 20 Feb 2016

I applied it in both ESH6 and HSIG16 but showed different results. ESH6 can show downticks data while HSIG16 always show ZERO even it dropped. Anyone can help? Thanks.
have you tried to plot a chart of :

Uptick only
Downtick only


Return to “MultiCharts”