/usr/share/octave/packages/financial-0.4.0/onbalvol.m is in octave-financial 0.4.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | ## Copyright (C) 2008 Bill Denney <bill@denney.ws>
##
## This program is free software; you can redistribute it and/or modify it under
## the terms of the GNU General Public License as published by the Free Software
## Foundation; either version 3 of the License, or (at your option) any later
## version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
## details.
##
## You should have received a copy of the GNU General Public License along with
## this program; if not, see <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {@var{obv} =} onbalvol (@var{closeprice}, @var{vol})
## @deftypefnx {Function File} {@var{obv} =} onbalvol ([@var{closeprice} @var{vol}])
##
## Compute the on balance volume of a security based on its closing
## price (@var{closeprice}) and @var{vol}ume. They may be given as
## separate arguments or as an nx2 matrix.
##
## The output will be a column vector, and the first number in the
## output is always 0.
##
## @seealso{negvolidx, posvolidx}
## @end deftypefn
function obv = onbalvol (c, vol)
if nargin == 1
% do nothing
elseif nargin == 2
c = [c(:) vol(:)];
else
print_usage ();
endif
obv = zeros (size (c, 1), 1);
for i = 2:size (c, 1)
if c(i,1) > c(i-1,1)
obv(i) = obv(i-1) + c(i,2);
elseif c(i,1) < c(i-1,1)
obv(i) = obv(i-1) - c(i,2);
else
obv(i) = obv(i-1);
endif
endfor
endfunction
## Tests
%!shared c, v, obv
%! c = [22.44 22.61 22.67 22.88 23.36 23.23 23.08 22.86 23.17 23.69 23.77 23.84 24.32 24.8 24.16 24.1 23.37 23.61 23.21];
%! v = [10 12 23 25 34 12 32 15 15 34 54 12 86 45 32 76 89 13 28];
%! obv = [0 12 35 60 94 82 50 35 50 84 138 150 236 281 249 173 84 97 69]';
%!assert(onbalvol(c, v), obv)
%!assert(onbalvol([c' v']), obv)
|