필터 지우기
필터 지우기

Geometric mean for a specific time intervals

조회 수: 4 (최근 30일)
Charles Martineau
Charles Martineau 2012년 6월 1일
Hi all,
say that I have a matrix (NX2) where the first column's elements are the number of seconds (since midnight) and the second column is stock returns associated to associated to the seconds. How can I use the function geomean and compute the geometric returns for a specific time interval? Say the geomean returns at every minute interval? The problem is that I might have say 4 stock returns in some specific minute interval and sometime 10 returns in another interval. If I extract all the trades by minutes, the numbers of returns registered in each minute interval will not be the same. Thank you!
  댓글 수: 2
Oleg Komarov
Oleg Komarov 2012년 6월 1일
Please do NOT delete answered questions.
Charles Martineau
Charles Martineau 2012년 6월 1일
Hi Oleg, sorry I did deleted my previous question by mistake!

댓글을 달려면 로그인하십시오.

채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 6월 1일
data = [(1:130)', randi(100,130,1)];
out = accumarray(ceil(data(:,1)/60),data(:,2),[],@geomean,NaN);

추가 답변 (1개)

Charles Martineau
Charles Martineau 2012년 6월 1일
Andrei thanks a lot! I didn't know about the accumarray function. I should have been more clear though in my question: I have multiple days stack on over the other. For intance: all stock returns per second for Sept.02 and then Sept.03. I have to find out how not to accumulate geomean returns combining multiple days at the same time.

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by