Created
February 9, 2014 14:17
-
-
Save milktrader/8899680 to your computer and use it in GitHub Desktop.
what days were doji days in SPX from 1950 - 2013
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
julia> using TimeSeries, MarketTechnicals, MarketData, Lazy | |
julia> @> OHLC doji findall x->OHLC[x] x->x.timestamp | |
166-element Array{Date{ISOCalendar},1}: | |
1962-03-02 | |
1962-04-13 | |
1962-07-16 | |
1962-10-08 | |
1963-02-08 | |
1963-05-22 | |
1964-01-17 | |
1964-02-25 | |
1964-03-16 | |
⋮ | |
2011-03-09 | |
2011-05-06 | |
2012-02-06 | |
2012-06-04 | |
2012-07-11 | |
2012-10-11 | |
2013-01-24 | |
2013-04-24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment