|
Hi,
I made a statistic based on DAX historic data from Monday to Friday. (1Y, 2Y, 4Y), For example, if price is up on monday, then ++ (1 time). if it is down, then -- ( 1 time). and so on.
with 1Y data
monday : 1
tuesday 1
wednesday 9
thursday 7
friday -6
with 2Y data
monday : 1
tuesday 2
wednesday 4
thursday -6
friday -3
with 4Y data
monday : 14
tuesday 9
wednesday 34
thursday 18
friday 5
Result :
We should buy stocks on Tuesday, and sell them on Thursday before closing, Friday was always bad day. |
|