View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default Summation of last (DD) days

Hi
good point. Another way would be to use the following function:
=SUMPRODUCT(--(A1:A1000=WORKDAY(TODAY(),-7,list_of_holidays)),B1:B1000
)

and
=SUMPRODUCT(--(C1:C1000=WORKDAY(TODAY(),-7,list_of_holidays)),D1:D1000
)


--
Regards
Frank Kabel
Frankfurt, Germany


Vasant Nanavati wrote:
Hi Frank:

This may not work if weekends and holidays are involved, which
probably would be the case with stock trading.

Regards,

Vasant.

"Frank Kabel" wrote in message
...
Hi
if your dates are stored as real dates (and not as text values) in
column a and C use the following formulas
=SUMIF(A1:A1000,"=" & TODAY()-7,B1:B1000)

and
=SUMIF(C1:C1000,"=" & TODAY()-7,D1:d1000)


--
Regards
Frank Kabel
Frankfurt, Germany


cirius3000 wrote:
i am tring to create a simple Nasdaq Breadth ratio
where the sum of the advancing volume for the past 8 days(including
today)
is divided by the declining volume for the past 8 days (includiny
today)
for anyone interested in the market i would buy when ADR=1.5 and
sell when ADR=0.8 this would be updated daily from yahoo
DATE AV DATE DV
20040331 674931876 20040331 1119570915
20040401 1322679760 20040401 449431185

i have the formulae but need to transfer into excel language
Data:
AV = Nasdaq Advancing Volume
DV = Nasdaq Declining Volume
Formulae:
SUM_AV = Summation of last (8) days (including current day) of AV
SUM_DV = Summation of last (8) days (including current day) of DV
ADR = SUM_UV / SUM_DV

TIA, cirius3000