QQQ. Days of the week. Yesterday's open to today's 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.

Mon-TueTue-WedWed-ThuThu-FriFri-Mon
PL %-45.12-27.27130.52-7.76-78.21

Day of week profit/loss grouped by the year
YearMon-TueTue-WedWed-ThuThu-FriFri-Mon
199910.46-11.3810.1925.5523.93
2000-8.43-18.35-85.09-15.7033.24
2001-16.63-29.29-21.5240.26-24.59
2002-4.80-36.08-10.506.51-19.94
20031.5924.5811.7015.019.67
2004-3.983.665.386.58-4.03
2005-0.81-4.76-5.200.43-0.79
2006-11.19-3.5715.7116.14-8.19
2007-11.142.2222.608.77-2.30
2008-14.53-12.85-21.85-26.46-4.35
20099.009.4422.3825.6118.05
201010.20-5.7014.219.65-5.96
2011-5.1719.109.67-8.53-5.66


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

theCrunchR | © 2011