QQQ. Days of the week. One day open to close.

Profit/loss calculated for each day of the week for the period from 3/10/1999 till 11/28/2011: go long on open, exit on close.

MonTueWedThuFri
PL %-31.41-57.8719.9440.06-71.24

Day of week profit/loss grouped by the year
YearMonTueWedThuFri
19991.44-25.4816.840.681.66
2000-2.20-21.87-42.509.29-11.21
2001-5.96-33.0211.9716.41-12.26
2002-3.49-25.6627.42-16.91-4.92
20032.1317.88-10.3919.08-9.07
20042.25-1.887.210.75-11.78
2005-0.48-4.75-1.02-1.38-6.06
2006-1.770.8212.351.41-11.76
2007-6.743.7413.19-3.68-5.79
2008-24.158.93-22.105.420.49
20097.072.9010.149.545.99
2010-0.88-0.909.45-1.56-2.48
20111.3221.46-12.641.00-4.22


Query used:
select 
case DATEPART(W, t.d)
      when 2 then 'Mon'
      when 3 then 'Tue'
      when 4 then 'Wed'
      when 5 then 'Thu'
      when 6 then 'Fri'
      end 'Day of Week', 
cast(sum((t.c- t.o)/t.o * 100) as decimal(10,2)) 'PL %', 
count(*) 'Num of Trades',
cast(sum((t.c- t.o)/t.o * 100) as decimal(10,2)) / count(*) 'Trade PL'
from qqq t
group by DATEPART(W, t.d)
order by DATEPART(W, t.d)

theCrunchR | © 2011