QQQ. Patterns. 3-4 days down, gap up.
Pattern description
Close Today or Tomorrow
Days back 4 and 3 either one of them or both are down. Days 2 and 1 back are down. Today's open is gap% higher then yesterday's close.(Gap up)
Buy todays open.
Close today at the end of the day if today's close higher than today's open. Otherwise close at the end of the day tomorrow.
Close Today
Same setup. Close today at the end of the day.
The results are calculated for period from 3/10/1999 till 11/28/2011.
Gap % | Trades Nbr | Close Today or Tomorrow PL% | Close Today or Tomorrow Avg Trade Pct | Close Today PL % | Close Today Avg Trade Pct |
---|---|---|---|---|---|
3 | 207 | 100.59 | 0.49 | 83.37 | 0.40 |
2.5 | 222 | 108.11 | 0.49 | 86.27 | 0.39 |
2 | 244 | 96.50 | 0.40 | 66.92 | 0.27 |
QQQ. 3-4 days down, gap up grouped by the year. 2.5% gap.
year | tradesNum | closeTodayOrTomorrowPL | closeTodayOrTomorrowAvgTradePct | closeTodayPL | closeTodayAvgTradePct |
---|---|---|---|---|---|
1999 | 18 | 15.61 | 0.87 | 9.03 | 0.50 |
2000 | 21 | 7.76 | 0.37 | 1.36 | 0.06 |
2001 | 14 | 11.83 | 0.84 | 15.19 | 1.08 |
2002 | 18 | 21.83 | 1.21 | 20.97 | 1.17 |
2003 | 14 | 4.83 | 0.34 | 7.80 | 0.56 |
2004 | 20 | 13.34 | 0.67 | 6.71 | 0.34 |
2005 | 18 | 2.76 | 0.15 | 2.23 | 0.12 |
2006 | 9 | 5.69 | 0.63 | 3.48 | 0.39 |
2007 | 21 | 11.02 | 0.52 | 7.66 | 0.36 |
2008 | 20 | -13.90 | -0.69 | -7.00 | -0.35 |
2009 | 16 | 8.68 | 0.54 | 9.44 | 0.59 |
2010 | 17 | 10.87 | 0.64 | 5.53 | 0.33 |
2011 | 16 | 7.78 | 0.49 | 3.86 | 0.24 |
Query used:
select
YEAR(t.[date]) year,
COUNT(*) tradesNum
,cast(SUM ( (case when t.[close] > t.[open] then t.[close] - t.[open]
when t.[close] < t.[open] then t1.[close] - t.[open] end) /t.[open] * 100) as decimal(10,2)) closeTodayOrTomorrow,
cast(SUM ( (case when t.[close] > t.[open] then t.[close] - t.[open]
when t.[close] < t.[open] then t1.[close] - t.[open] end) /t.[open] * 100
)/COUNT(*) as decimal(10,2)) closeTodayOrTomorrowPct
,cast(SUM ( (t.[close] - t.[open]) /t.[open] * 100) as decimal(10,2)) closeToday,
cast( SUM ( (t.[close] - t.[open]) /t.[open] * 100)/COUNT(*) as decimal(10,2)) closeTodayPct
from qqq100 t
join qqq100 t1 on t1.id = t.id + 1 and t.ticker = t1.ticker
join qqq100 t_1 on t_1.id = t.id - 1 and t_1.ticker = t.ticker
join qqq100 t_2 on t_2.id = t.id - 2 and t_2.ticker = t.ticker
join qqq100 t_3 on t_3.id = t.id - 3 and t_3.ticker = t.ticker
join qqq100 t_4 on t_4.id = t.id - 4 and t_4.ticker = t.ticker
where 1=1
and t.ticker = 'qqq'
and ((t.[open] - t_1.[close])/t_1.[close]) > 0.003
and t_1.[close] < t_1.[open]
and t_2.[close] < t_2.[open]
and (t_3.[close] < t_3.[open] or t_4.[close] < t_4.[open])
group by YEAR(t.[date])
order by YEAR(t.[date])