Page 1 of 2

Price Weighted Tick Volume

PostPosted: Fri Aug 09, 2019 10:45 am
by logicgate
Hi dear friend Apprentice, can you please code this indicator for MT4?

Here is the formula:

Tick Volume / Money Flow = Cumulative Sum (Tick Price x Uptick's Volume) - Cumulative Sum (Tick Price x Downtick's Volume)


Can you add an option to choose if you want the indicator to be plotted as a line or histogram?

Thanks!

Re: Price Weighted Tick Volume

PostPosted: Fri Aug 09, 2019 4:39 pm
by logicgate
Also an option to display it as OHLC bars too!

Re: Price Weighted Tick Volume

PostPosted: Fri Aug 09, 2019 5:08 pm
by Apprentice
Unfortunately, Uptick's Volume and Downtick's Volume are not available.

Re: Price Weighted Tick Volume

PostPosted: Fri Aug 09, 2019 8:43 pm
by logicgate
Apprentice wrote:Unfortunately, Uptick's Volume and Downtick's Volume are not available.



Can you use the code from this indicator attached here as a starting point? Somehow they figure how to separate up ticks and down ticks.

Re: Price Weighted Tick Volume

PostPosted: Sat Aug 10, 2019 4:42 am
by Apprentice
Actual data was not used, They use this formula.
UpTicks[i]=(Volume[i]+(Close[i]-Open[i])
DownTicks[i]=Volume[i]-UpTicks[i];

Re: Price Weighted Tick Volume

PostPosted: Sat Aug 10, 2019 6:34 am
by Apprentice
Up Down Tick.mq4
(5.3 KiB) Downloaded 383 times

Re-writen version of posted indicator.

Re: Price Weighted Tick Volume

PostPosted: Sat Aug 10, 2019 7:00 am
by Apprentice

Re: Price Weighted Tick Volume

PostPosted: Sat Oct 05, 2019 8:07 am
by logicgate
Apprentice wrote:
Up Down Tick.mq4

Re-writen version of posted indicator.


Hello dear friend. Can you add an option to this indi to combine the values? So you subtract the up tick from the down tick and plot it cumulatively. Thanks

Re: Price Weighted Tick Volume

PostPosted: Wed Oct 09, 2019 11:14 am
by Apprentice
Your request is added to the development list.
Development reference 167.

Re: Price Weighted Tick Volume

PostPosted: Wed Oct 09, 2019 4:48 pm
by logicgate
Apprentice wrote:Your request is added to the development list.
Development reference 167.


Thanks, give it the ability to choose the timeframe too!