pandas-market-calendars 5.1.0__py3-none-any.whl → 5.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pandas_market_calendars/__init__.py +39 -39
 - pandas_market_calendars/calendar_registry.py +58 -57
 - pandas_market_calendars/calendar_utils.py +1151 -1151
 - pandas_market_calendars/calendars/asx.py +100 -70
 - pandas_market_calendars/calendars/bmf.py +225 -219
 - pandas_market_calendars/calendars/bse.py +433 -425
 - pandas_market_calendars/calendars/cboe.py +153 -149
 - pandas_market_calendars/calendars/cme.py +417 -405
 - pandas_market_calendars/calendars/cme_globex_agriculture.py +172 -172
 - pandas_market_calendars/calendars/cme_globex_base.py +127 -119
 - pandas_market_calendars/calendars/cme_globex_crypto.py +166 -158
 - pandas_market_calendars/calendars/cme_globex_energy_and_metals.py +224 -216
 - pandas_market_calendars/calendars/cme_globex_equities.py +131 -123
 - pandas_market_calendars/calendars/cme_globex_fixed_income.py +136 -136
 - pandas_market_calendars/calendars/cme_globex_fx.py +101 -101
 - pandas_market_calendars/calendars/eurex.py +139 -131
 - pandas_market_calendars/calendars/eurex_fixed_income.py +106 -98
 - pandas_market_calendars/calendars/hkex.py +437 -431
 - pandas_market_calendars/calendars/ice.py +89 -81
 - pandas_market_calendars/calendars/iex.py +163 -155
 - pandas_market_calendars/calendars/jpx.py +125 -117
 - pandas_market_calendars/calendars/lse.py +126 -118
 - pandas_market_calendars/calendars/mirror.py +144 -144
 - pandas_market_calendars/calendars/nyse.py +1462 -1466
 - pandas_market_calendars/calendars/ose.py +124 -118
 - pandas_market_calendars/calendars/sifma.py +391 -383
 - pandas_market_calendars/calendars/six.py +144 -136
 - pandas_market_calendars/calendars/sse.py +305 -315
 - pandas_market_calendars/calendars/tase.py +232 -224
 - pandas_market_calendars/calendars/tsx.py +193 -185
 - pandas_market_calendars/class_registry.py +115 -115
 - pandas_market_calendars/holidays/cme.py +385 -385
 - pandas_market_calendars/holidays/cme_globex.py +214 -214
 - pandas_market_calendars/holidays/cn.py +1476 -1476
 - pandas_market_calendars/holidays/jp.py +401 -401
 - pandas_market_calendars/holidays/jpx_equinox.py +506 -506
 - pandas_market_calendars/holidays/nyse.py +1536 -1536
 - pandas_market_calendars/holidays/oz.py +82 -63
 - pandas_market_calendars/holidays/sifma.py +350 -350
 - pandas_market_calendars/holidays/uk.py +186 -186
 - pandas_market_calendars/holidays/us.py +376 -376
 - pandas_market_calendars/market_calendar.py +1006 -1008
 - {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.3.dist-info}/METADATA +5 -4
 - pandas_market_calendars-5.1.3.dist-info/RECORD +50 -0
 - {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.3.dist-info}/WHEEL +1 -1
 - pandas_market_calendars-5.1.0.dist-info/RECORD +0 -50
 - {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.3.dist-info}/licenses/LICENSE +0 -0
 - {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.3.dist-info}/licenses/NOTICE +0 -0
 - {pandas_market_calendars-5.1.0.dist-info → pandas_market_calendars-5.1.3.dist-info}/top_level.txt +0 -0
 
| 
         @@ -1,1466 +1,1462 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            #
         
     | 
| 
       2 
     | 
    
         
            -
            # Copyright 2016 Quantopian, Inc.
         
     | 
| 
       3 
     | 
    
         
            -
            #
         
     | 
| 
       4 
     | 
    
         
            -
            # Licensed under the Apache License, Version 2.0 (the "License");
         
     | 
| 
       5 
     | 
    
         
            -
            # you may not use this file except in compliance with the License.
         
     | 
| 
       6 
     | 
    
         
            -
            # You may obtain a copy of the License at
         
     | 
| 
       7 
     | 
    
         
            -
            #
         
     | 
| 
       8 
     | 
    
         
            -
            #     http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
       9 
     | 
    
         
            -
            #
         
     | 
| 
       10 
     | 
    
         
            -
            # Unless required by applicable law or agreed to in writing, software
         
     | 
| 
       11 
     | 
    
         
            -
            # distributed under the License is distributed on an "AS IS" BASIS,
         
     | 
| 
       12 
     | 
    
         
            -
            # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
         
     | 
| 
       13 
     | 
    
         
            -
            # See the License for the specific language governing permissions and
         
     | 
| 
       14 
     | 
    
         
            -
            # limitations under the License.
         
     | 
| 
       15 
     | 
    
         
            -
             
     | 
| 
       16 
     | 
    
         
            -
            from datetime import time
         
     | 
| 
       17 
     | 
    
         
            -
            from itertools import chain
         
     | 
| 
       18 
     | 
    
         
            -
            from typing import Literal, Union
         
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
            from zoneinfo import ZoneInfo
         
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
             
     | 
| 
       27 
     | 
    
         
            -
            from  
     | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
       31 
     | 
    
         
            -
             
     | 
| 
       32 
     | 
    
         
            -
             
     | 
| 
       33 
     | 
    
         
            -
             
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
                 
     | 
| 
       36 
     | 
    
         
            -
                 
     | 
| 
       37 
     | 
    
         
            -
                 
     | 
| 
       38 
     | 
    
         
            -
                 
     | 
| 
       39 
     | 
    
         
            -
                 
     | 
| 
       40 
     | 
    
         
            -
                 
     | 
| 
       41 
     | 
    
         
            -
                 
     | 
| 
       42 
     | 
    
         
            -
                 
     | 
| 
       43 
     | 
    
         
            -
                 
     | 
| 
       44 
     | 
    
         
            -
                 
     | 
| 
       45 
     | 
    
         
            -
                 
     | 
| 
       46 
     | 
    
         
            -
                 
     | 
| 
       47 
     | 
    
         
            -
                 
     | 
| 
       48 
     | 
    
         
            -
                 
     | 
| 
       49 
     | 
    
         
            -
                 
     | 
| 
       50 
     | 
    
         
            -
                 
     | 
| 
       51 
     | 
    
         
            -
                 
     | 
| 
       52 
     | 
    
         
            -
                 
     | 
| 
       53 
     | 
    
         
            -
                 
     | 
| 
       54 
     | 
    
         
            -
                 
     | 
| 
       55 
     | 
    
         
            -
                 
     | 
| 
       56 
     | 
    
         
            -
                 
     | 
| 
       57 
     | 
    
         
            -
                 
     | 
| 
       58 
     | 
    
         
            -
                 
     | 
| 
       59 
     | 
    
         
            -
                 
     | 
| 
       60 
     | 
    
         
            -
                 
     | 
| 
       61 
     | 
    
         
            -
                 
     | 
| 
       62 
     | 
    
         
            -
                 
     | 
| 
       63 
     | 
    
         
            -
                 
     | 
| 
       64 
     | 
    
         
            -
                 
     | 
| 
       65 
     | 
    
         
            -
                 
     | 
| 
       66 
     | 
    
         
            -
                 
     | 
| 
       67 
     | 
    
         
            -
                 
     | 
| 
       68 
     | 
    
         
            -
                 
     | 
| 
       69 
     | 
    
         
            -
                 
     | 
| 
       70 
     | 
    
         
            -
                 
     | 
| 
       71 
     | 
    
         
            -
                 
     | 
| 
       72 
     | 
    
         
            -
                 
     | 
| 
       73 
     | 
    
         
            -
                 
     | 
| 
       74 
     | 
    
         
            -
                 
     | 
| 
       75 
     | 
    
         
            -
                 
     | 
| 
       76 
     | 
    
         
            -
                 
     | 
| 
       77 
     | 
    
         
            -
                 
     | 
| 
       78 
     | 
    
         
            -
                 
     | 
| 
       79 
     | 
    
         
            -
                 
     | 
| 
       80 
     | 
    
         
            -
                 
     | 
| 
       81 
     | 
    
         
            -
                 
     | 
| 
       82 
     | 
    
         
            -
                 
     | 
| 
       83 
     | 
    
         
            -
                 
     | 
| 
       84 
     | 
    
         
            -
                 
     | 
| 
       85 
     | 
    
         
            -
                 
     | 
| 
       86 
     | 
    
         
            -
                 
     | 
| 
       87 
     | 
    
         
            -
                 
     | 
| 
       88 
     | 
    
         
            -
                 
     | 
| 
       89 
     | 
    
         
            -
                 
     | 
| 
       90 
     | 
    
         
            -
                 
     | 
| 
       91 
     | 
    
         
            -
                 
     | 
| 
       92 
     | 
    
         
            -
                 
     | 
| 
       93 
     | 
    
         
            -
                 
     | 
| 
       94 
     | 
    
         
            -
                 
     | 
| 
       95 
     | 
    
         
            -
                #  
     | 
| 
       96 
     | 
    
         
            -
                 
     | 
| 
       97 
     | 
    
         
            -
                 
     | 
| 
       98 
     | 
    
         
            -
                 
     | 
| 
       99 
     | 
    
         
            -
                #  
     | 
| 
       100 
     | 
    
         
            -
                 
     | 
| 
       101 
     | 
    
         
            -
                 
     | 
| 
       102 
     | 
    
         
            -
                 
     | 
| 
       103 
     | 
    
         
            -
                 
     | 
| 
       104 
     | 
    
         
            -
                #  
     | 
| 
       105 
     | 
    
         
            -
                 
     | 
| 
       106 
     | 
    
         
            -
                 
     | 
| 
       107 
     | 
    
         
            -
                 
     | 
| 
       108 
     | 
    
         
            -
                 
     | 
| 
       109 
     | 
    
         
            -
                 
     | 
| 
       110 
     | 
    
         
            -
                 
     | 
| 
       111 
     | 
    
         
            -
                 
     | 
| 
       112 
     | 
    
         
            -
                 
     | 
| 
       113 
     | 
    
         
            -
                 
     | 
| 
       114 
     | 
    
         
            -
                #  
     | 
| 
       115 
     | 
    
         
            -
                 
     | 
| 
       116 
     | 
    
         
            -
                 
     | 
| 
       117 
     | 
    
         
            -
                 
     | 
| 
       118 
     | 
    
         
            -
                 
     | 
| 
       119 
     | 
    
         
            -
                 
     | 
| 
       120 
     | 
    
         
            -
                 
     | 
| 
       121 
     | 
    
         
            -
                 
     | 
| 
       122 
     | 
    
         
            -
                 
     | 
| 
       123 
     | 
    
         
            -
                #  
     | 
| 
       124 
     | 
    
         
            -
                 
     | 
| 
       125 
     | 
    
         
            -
                #  
     | 
| 
       126 
     | 
    
         
            -
                 
     | 
| 
       127 
     | 
    
         
            -
                 
     | 
| 
       128 
     | 
    
         
            -
                 
     | 
| 
       129 
     | 
    
         
            -
                 
     | 
| 
       130 
     | 
    
         
            -
                #  
     | 
| 
       131 
     | 
    
         
            -
                 
     | 
| 
       132 
     | 
    
         
            -
                 
     | 
| 
       133 
     | 
    
         
            -
                 
     | 
| 
       134 
     | 
    
         
            -
                 
     | 
| 
       135 
     | 
    
         
            -
                #  
     | 
| 
       136 
     | 
    
         
            -
                 
     | 
| 
       137 
     | 
    
         
            -
                 
     | 
| 
       138 
     | 
    
         
            -
                 
     | 
| 
       139 
     | 
    
         
            -
                 
     | 
| 
       140 
     | 
    
         
            -
                 
     | 
| 
       141 
     | 
    
         
            -
                 
     | 
| 
       142 
     | 
    
         
            -
                 
     | 
| 
       143 
     | 
    
         
            -
                 
     | 
| 
       144 
     | 
    
         
            -
                 
     | 
| 
       145 
     | 
    
         
            -
                 
     | 
| 
       146 
     | 
    
         
            -
                 
     | 
| 
       147 
     | 
    
         
            -
                 
     | 
| 
       148 
     | 
    
         
            -
                #  
     | 
| 
       149 
     | 
    
         
            -
                 
     | 
| 
       150 
     | 
    
         
            -
                 
     | 
| 
       151 
     | 
    
         
            -
                 
     | 
| 
       152 
     | 
    
         
            -
                 
     | 
| 
       153 
     | 
    
         
            -
                 
     | 
| 
       154 
     | 
    
         
            -
                 
     | 
| 
       155 
     | 
    
         
            -
                 
     | 
| 
       156 
     | 
    
         
            -
                 
     | 
| 
       157 
     | 
    
         
            -
                 
     | 
| 
       158 
     | 
    
         
            -
                 
     | 
| 
       159 
     | 
    
         
            -
                #  
     | 
| 
       160 
     | 
    
         
            -
                 
     | 
| 
       161 
     | 
    
         
            -
                 
     | 
| 
       162 
     | 
    
         
            -
                 
     | 
| 
       163 
     | 
    
         
            -
                 
     | 
| 
       164 
     | 
    
         
            -
                #  
     | 
| 
       165 
     | 
    
         
            -
                 
     | 
| 
       166 
     | 
    
         
            -
                 
     | 
| 
       167 
     | 
    
         
            -
                 
     | 
| 
       168 
     | 
    
         
            -
                 
     | 
| 
       169 
     | 
    
         
            -
                 
     | 
| 
       170 
     | 
    
         
            -
                 
     | 
| 
       171 
     | 
    
         
            -
                #  
     | 
| 
       172 
     | 
    
         
            -
                 
     | 
| 
       173 
     | 
    
         
            -
                 
     | 
| 
       174 
     | 
    
         
            -
                 
     | 
| 
       175 
     | 
    
         
            -
                 
     | 
| 
       176 
     | 
    
         
            -
                 
     | 
| 
       177 
     | 
    
         
            -
                 
     | 
| 
       178 
     | 
    
         
            -
                 
     | 
| 
       179 
     | 
    
         
            -
                 
     | 
| 
       180 
     | 
    
         
            -
                 
     | 
| 
       181 
     | 
    
         
            -
                 
     | 
| 
       182 
     | 
    
         
            -
                 
     | 
| 
       183 
     | 
    
         
            -
                 
     | 
| 
       184 
     | 
    
         
            -
                 
     | 
| 
       185 
     | 
    
         
            -
                 
     | 
| 
       186 
     | 
    
         
            -
                 
     | 
| 
       187 
     | 
    
         
            -
                 
     | 
| 
       188 
     | 
    
         
            -
                 
     | 
| 
       189 
     | 
    
         
            -
                 
     | 
| 
       190 
     | 
    
         
            -
                 
     | 
| 
       191 
     | 
    
         
            -
                 
     | 
| 
       192 
     | 
    
         
            -
                 
     | 
| 
       193 
     | 
    
         
            -
                #  
     | 
| 
       194 
     | 
    
         
            -
                 
     | 
| 
       195 
     | 
    
         
            -
                 
     | 
| 
       196 
     | 
    
         
            -
                 
     | 
| 
       197 
     | 
    
         
            -
                 
     | 
| 
       198 
     | 
    
         
            -
                 
     | 
| 
       199 
     | 
    
         
            -
                 
     | 
| 
       200 
     | 
    
         
            -
                 
     | 
| 
       201 
     | 
    
         
            -
                 
     | 
| 
       202 
     | 
    
         
            -
                 
     | 
| 
       203 
     | 
    
         
            -
                #  
     | 
| 
       204 
     | 
    
         
            -
                 
     | 
| 
       205 
     | 
    
         
            -
                #  
     | 
| 
       206 
     | 
    
         
            -
                 
     | 
| 
       207 
     | 
    
         
            -
                 
     | 
| 
       208 
     | 
    
         
            -
                 
     | 
| 
       209 
     | 
    
         
            -
                 
     | 
| 
       210 
     | 
    
         
            -
                 
     | 
| 
       211 
     | 
    
         
            -
                 
     | 
| 
       212 
     | 
    
         
            -
                 
     | 
| 
       213 
     | 
    
         
            -
                 
     | 
| 
       214 
     | 
    
         
            -
                #  
     | 
| 
       215 
     | 
    
         
            -
                 
     | 
| 
       216 
     | 
    
         
            -
                #  
     | 
| 
       217 
     | 
    
         
            -
                 
     | 
| 
       218 
     | 
    
         
            -
                #  
     | 
| 
       219 
     | 
    
         
            -
                 
     | 
| 
       220 
     | 
    
         
            -
                 
     | 
| 
       221 
     | 
    
         
            -
                 
     | 
| 
       222 
     | 
    
         
            -
                 
     | 
| 
       223 
     | 
    
         
            -
                 
     | 
| 
       224 
     | 
    
         
            -
                 
     | 
| 
       225 
     | 
    
         
            -
                 
     | 
| 
       226 
     | 
    
         
            -
                 
     | 
| 
       227 
     | 
    
         
            -
                 
     | 
| 
       228 
     | 
    
         
            -
                 
     | 
| 
       229 
     | 
    
         
            -
                 
     | 
| 
       230 
     | 
    
         
            -
                 
     | 
| 
       231 
     | 
    
         
            -
                 
     | 
| 
       232 
     | 
    
         
            -
                 
     | 
| 
       233 
     | 
    
         
            -
                 
     | 
| 
       234 
     | 
    
         
            -
                 
     | 
| 
       235 
     | 
    
         
            -
                 
     | 
| 
       236 
     | 
    
         
            -
                 
     | 
| 
       237 
     | 
    
         
            -
                 
     | 
| 
       238 
     | 
    
         
            -
                 
     | 
| 
       239 
     | 
    
         
            -
                 
     | 
| 
       240 
     | 
    
         
            -
                 
     | 
| 
       241 
     | 
    
         
            -
                 
     | 
| 
       242 
     | 
    
         
            -
                 
     | 
| 
       243 
     | 
    
         
            -
                 
     | 
| 
       244 
     | 
    
         
            -
                 
     | 
| 
       245 
     | 
    
         
            -
                 
     | 
| 
       246 
     | 
    
         
            -
                 
     | 
| 
       247 
     | 
    
         
            -
                 
     | 
| 
       248 
     | 
    
         
            -
                 
     | 
| 
       249 
     | 
    
         
            -
                 
     | 
| 
       250 
     | 
    
         
            -
                 
     | 
| 
       251 
     | 
    
         
            -
                 
     | 
| 
       252 
     | 
    
         
            -
                 
     | 
| 
       253 
     | 
    
         
            -
                 
     | 
| 
       254 
     | 
    
         
            -
                 
     | 
| 
       255 
     | 
    
         
            -
                 
     | 
| 
       256 
     | 
    
         
            -
                 
     | 
| 
       257 
     | 
    
         
            -
                 
     | 
| 
       258 
     | 
    
         
            -
                 
     | 
| 
       259 
     | 
    
         
            -
                 
     | 
| 
       260 
     | 
    
         
            -
                #  
     | 
| 
       261 
     | 
    
         
            -
                 
     | 
| 
       262 
     | 
    
         
            -
                 
     | 
| 
       263 
     | 
    
         
            -
                 
     | 
| 
       264 
     | 
    
         
            -
                 
     | 
| 
       265 
     | 
    
         
            -
                 
     | 
| 
       266 
     | 
    
         
            -
                 
     | 
| 
       267 
     | 
    
         
            -
                #  
     | 
| 
       268 
     | 
    
         
            -
                 
     | 
| 
       269 
     | 
    
         
            -
                #  
     | 
| 
       270 
     | 
    
         
            -
                 
     | 
| 
       271 
     | 
    
         
            -
                 
     | 
| 
       272 
     | 
    
         
            -
                 
     | 
| 
       273 
     | 
    
         
            -
                 
     | 
| 
       274 
     | 
    
         
            -
                 
     | 
| 
       275 
     | 
    
         
            -
                 
     | 
| 
       276 
     | 
    
         
            -
                #  
     | 
| 
       277 
     | 
    
         
            -
                 
     | 
| 
       278 
     | 
    
         
            -
                #  
     | 
| 
       279 
     | 
    
         
            -
                 
     | 
| 
       280 
     | 
    
         
            -
                 
     | 
| 
       281 
     | 
    
         
            -
                 
     | 
| 
       282 
     | 
    
         
            -
                 
     | 
| 
       283 
     | 
    
         
            -
                #  
     | 
| 
       284 
     | 
    
         
            -
                 
     | 
| 
       285 
     | 
    
         
            -
                 
     | 
| 
       286 
     | 
    
         
            -
                 
     | 
| 
       287 
     | 
    
         
            -
                 
     | 
| 
       288 
     | 
    
         
            -
                 
     | 
| 
       289 
     | 
    
         
            -
                 
     | 
| 
       290 
     | 
    
         
            -
                 
     | 
| 
       291 
     | 
    
         
            -
                 
     | 
| 
       292 
     | 
    
         
            -
                 
     | 
| 
       293 
     | 
    
         
            -
                 
     | 
| 
       294 
     | 
    
         
            -
                #  
     | 
| 
       295 
     | 
    
         
            -
                 
     | 
| 
       296 
     | 
    
         
            -
                #  
     | 
| 
       297 
     | 
    
         
            -
                 
     | 
| 
       298 
     | 
    
         
            -
                #  
     | 
| 
       299 
     | 
    
         
            -
                 
     | 
| 
       300 
     | 
    
         
            -
                 
     | 
| 
       301 
     | 
    
         
            -
                 
     | 
| 
       302 
     | 
    
         
            -
                 
     | 
| 
       303 
     | 
    
         
            -
                 
     | 
| 
       304 
     | 
    
         
            -
                 
     | 
| 
       305 
     | 
    
         
            -
                 
     | 
| 
       306 
     | 
    
         
            -
             
     | 
| 
       307 
     | 
    
         
            -
             
     | 
| 
       308 
     | 
    
         
            -
             
     | 
| 
       309 
     | 
    
         
            -
            #  
     | 
| 
       310 
     | 
    
         
            -
             
     | 
| 
       311 
     | 
    
         
            -
            #  
     | 
| 
       312 
     | 
    
         
            -
             
     | 
| 
       313 
     | 
    
         
            -
             
     | 
| 
       314 
     | 
    
         
            -
             
     | 
| 
       315 
     | 
    
         
            -
             
     | 
| 
       316 
     | 
    
         
            -
             
     | 
| 
       317 
     | 
    
         
            -
             
     | 
| 
       318 
     | 
    
         
            -
             
     | 
| 
       319 
     | 
    
         
            -
             
     | 
| 
       320 
     | 
    
         
            -
             
     | 
| 
       321 
     | 
    
         
            -
             
     | 
| 
       322 
     | 
    
         
            -
             
     | 
| 
       323 
     | 
    
         
            -
             
     | 
| 
       324 
     | 
    
         
            -
             
     | 
| 
       325 
     | 
    
         
            -
                 
     | 
| 
       326 
     | 
    
         
            -
                 
     | 
| 
       327 
     | 
    
         
            -
             
     | 
| 
       328 
     | 
    
         
            -
             
     | 
| 
       329 
     | 
    
         
            -
                 
     | 
| 
       330 
     | 
    
         
            -
                -  
     | 
| 
       331 
     | 
    
         
            -
                -  
     | 
| 
       332 
     | 
    
         
            -
                -  
     | 
| 
       333 
     | 
    
         
            -
                -  
     | 
| 
       334 
     | 
    
         
            -
             
     | 
| 
       335 
     | 
    
         
            -
             
     | 
| 
       336 
     | 
    
         
            -
                -  
     | 
| 
       337 
     | 
    
         
            -
                -  
     | 
| 
       338 
     | 
    
         
            -
             
     | 
| 
       339 
     | 
    
         
            -
                 
     | 
| 
       340 
     | 
    
         
            -
                 
     | 
| 
       341 
     | 
    
         
            -
             
     | 
| 
       342 
     | 
    
         
            -
             
     | 
| 
       343 
     | 
    
         
            -
                -  
     | 
| 
       344 
     | 
    
         
            -
                -  
     | 
| 
       345 
     | 
    
         
            -
             
     | 
| 
       346 
     | 
    
         
            -
                 
     | 
| 
       347 
     | 
    
         
            -
                -  
     | 
| 
       348 
     | 
    
         
            -
                 
     | 
| 
       349 
     | 
    
         
            -
                -  
     | 
| 
       350 
     | 
    
         
            -
                -  
     | 
| 
       351 
     | 
    
         
            -
                -  
     | 
| 
       352 
     | 
    
         
            -
                -  
     | 
| 
       353 
     | 
    
         
            -
                -  
     | 
| 
       354 
     | 
    
         
            -
                -  
     | 
| 
       355 
     | 
    
         
            -
                -  
     | 
| 
       356 
     | 
    
         
            -
                -  
     | 
| 
       357 
     | 
    
         
            -
                -  
     | 
| 
       358 
     | 
    
         
            -
                -  
     | 
| 
       359 
     | 
    
         
            -
                -  
     | 
| 
       360 
     | 
    
         
            -
                -  
     | 
| 
       361 
     | 
    
         
            -
                -  
     | 
| 
       362 
     | 
    
         
            -
             
     | 
| 
       363 
     | 
    
         
            -
                 
     | 
| 
       364 
     | 
    
         
            -
                 
     | 
| 
       365 
     | 
    
         
            -
                 
     | 
| 
       366 
     | 
    
         
            -
                -  
     | 
| 
       367 
     | 
    
         
            -
                -  
     | 
| 
       368 
     | 
    
         
            -
                - Christmas  
     | 
| 
       369 
     | 
    
         
            -
             
     | 
| 
       370 
     | 
    
         
            -
             
     | 
| 
       371 
     | 
    
         
            -
                 
     | 
| 
       372 
     | 
    
         
            -
                 
     | 
| 
       373 
     | 
    
         
            -
             
     | 
| 
       374 
     | 
    
         
            -
                 
     | 
| 
       375 
     | 
    
         
            -
                 
     | 
| 
       376 
     | 
    
         
            -
                 
     | 
| 
       377 
     | 
    
         
            -
             
     | 
| 
       378 
     | 
    
         
            -
                 
     | 
| 
       379 
     | 
    
         
            -
             
     | 
| 
       380 
     | 
    
         
            -
             
     | 
| 
       381 
     | 
    
         
            -
                 
     | 
| 
       382 
     | 
    
         
            -
                 
     | 
| 
       383 
     | 
    
         
            -
                 
     | 
| 
       384 
     | 
    
         
            -
                -  
     | 
| 
       385 
     | 
    
         
            -
                -  
     | 
| 
       386 
     | 
    
         
            -
             
     | 
| 
       387 
     | 
    
         
            -
                 
     | 
| 
       388 
     | 
    
         
            -
                 
     | 
| 
       389 
     | 
    
         
            -
                 
     | 
| 
       390 
     | 
    
         
            -
                 
     | 
| 
       391 
     | 
    
         
            -
                - Closed on  
     | 
| 
       392 
     | 
    
         
            -
                - Closed on  
     | 
| 
       393 
     | 
    
         
            -
                - Closed on  
     | 
| 
       394 
     | 
    
         
            -
                - Closed on  
     | 
| 
       395 
     | 
    
         
            -
                - Closed on  
     | 
| 
       396 
     | 
    
         
            -
                - Closed on  
     | 
| 
       397 
     | 
    
         
            -
                - Closed on  
     | 
| 
       398 
     | 
    
         
            -
                - Closed on  
     | 
| 
       399 
     | 
    
         
            -
                - Closed on  
     | 
| 
       400 
     | 
    
         
            -
                - Closed on Jul 2,  
     | 
| 
       401 
     | 
    
         
            -
                - Closed on  
     | 
| 
       402 
     | 
    
         
            -
                - Closed on  
     | 
| 
       403 
     | 
    
         
            -
                - Closed on  
     | 
| 
       404 
     | 
    
         
            -
                - Closed on  
     | 
| 
       405 
     | 
    
         
            -
                - Closed on  
     | 
| 
       406 
     | 
    
         
            -
                - Closed on  
     | 
| 
       407 
     | 
    
         
            -
                - Closed on  
     | 
| 
       408 
     | 
    
         
            -
                - Closed on  
     | 
| 
       409 
     | 
    
         
            -
                - Closed on  
     | 
| 
       410 
     | 
    
         
            -
                - Closed on  
     | 
| 
       411 
     | 
    
         
            -
                - Closed on  
     | 
| 
       412 
     | 
    
         
            -
                - Closed on  
     | 
| 
       413 
     | 
    
         
            -
                - Closed on  
     | 
| 
       414 
     | 
    
         
            -
                - Closed on  
     | 
| 
       415 
     | 
    
         
            -
                - Closed on  
     | 
| 
       416 
     | 
    
         
            -
                - Closed on  
     | 
| 
       417 
     | 
    
         
            -
                - Closed on  
     | 
| 
       418 
     | 
    
         
            -
                - Closed on  
     | 
| 
       419 
     | 
    
         
            -
                - Closed on  
     | 
| 
       420 
     | 
    
         
            -
                - Closed on  
     | 
| 
       421 
     | 
    
         
            -
                - Closed on  
     | 
| 
       422 
     | 
    
         
            -
                - Closed on  
     | 
| 
       423 
     | 
    
         
            -
                - Closed on  
     | 
| 
       424 
     | 
    
         
            -
                - Closed on  
     | 
| 
       425 
     | 
    
         
            -
                - Closed on Aug  
     | 
| 
       426 
     | 
    
         
            -
                - Closed on  
     | 
| 
       427 
     | 
    
         
            -
                - Closed on  
     | 
| 
       428 
     | 
    
         
            -
                - Closed on  
     | 
| 
       429 
     | 
    
         
            -
                - Closed on  
     | 
| 
       430 
     | 
    
         
            -
                - Closed on  
     | 
| 
       431 
     | 
    
         
            -
                - Closed on  
     | 
| 
       432 
     | 
    
         
            -
                - Closed on  
     | 
| 
       433 
     | 
    
         
            -
                - Closed on  
     | 
| 
       434 
     | 
    
         
            -
                - Closed on  
     | 
| 
       435 
     | 
    
         
            -
                - Closed on Apr 22,  
     | 
| 
       436 
     | 
    
         
            -
                - Closed on  
     | 
| 
       437 
     | 
    
         
            -
                - Closed on  
     | 
| 
       438 
     | 
    
         
            -
                - Closed on  
     | 
| 
       439 
     | 
    
         
            -
                - Closed on  
     | 
| 
       440 
     | 
    
         
            -
                -  
     | 
| 
       441 
     | 
    
         
            -
                - Closed on  
     | 
| 
       442 
     | 
    
         
            -
                - Closed on  
     | 
| 
       443 
     | 
    
         
            -
                - Closed on Feb  
     | 
| 
       444 
     | 
    
         
            -
                - Closed on  
     | 
| 
       445 
     | 
    
         
            -
                - Closed on  
     | 
| 
       446 
     | 
    
         
            -
                - Closed on  
     | 
| 
       447 
     | 
    
         
            -
                -  
     | 
| 
       448 
     | 
    
         
            -
                - Closed on Sep  
     | 
| 
       449 
     | 
    
         
            -
                - Closed on  
     | 
| 
       450 
     | 
    
         
            -
                -  
     | 
| 
       451 
     | 
    
         
            -
                -  
     | 
| 
       452 
     | 
    
         
            -
                - Closed on May  
     | 
| 
       453 
     | 
    
         
            -
                - Closed on Jul  
     | 
| 
       454 
     | 
    
         
            -
                - Closed on Sep  
     | 
| 
       455 
     | 
    
         
            -
                - Closed on  
     | 
| 
       456 
     | 
    
         
            -
                - Closed on 
     | 
| 
       457 
     | 
    
         
            -
                -  
     | 
| 
       458 
     | 
    
         
            -
                -  
     | 
| 
       459 
     | 
    
         
            -
                - Closed on  
     | 
| 
       460 
     | 
    
         
            -
                - Closed on  
     | 
| 
       461 
     | 
    
         
            -
                - Closed on  
     | 
| 
       462 
     | 
    
         
            -
                -  
     | 
| 
       463 
     | 
    
         
            -
                - Closed on  
     | 
| 
       464 
     | 
    
         
            -
                - Closed on  
     | 
| 
       465 
     | 
    
         
            -
                - Closed on  
     | 
| 
       466 
     | 
    
         
            -
                -  
     | 
| 
       467 
     | 
    
         
            -
                - Closed on  
     | 
| 
       468 
     | 
    
         
            -
             
     | 
| 
       469 
     | 
    
         
            -
             
     | 
| 
       470 
     | 
    
         
            -
             
     | 
| 
       471 
     | 
    
         
            -
             
     | 
| 
       472 
     | 
    
         
            -
                - Closed on  
     | 
| 
       473 
     | 
    
         
            -
                -  
     | 
| 
       474 
     | 
    
         
            -
                - Closed on  
     | 
| 
       475 
     | 
    
         
            -
             
     | 
| 
       476 
     | 
    
         
            -
             
     | 
| 
       477 
     | 
    
         
            -
             
     | 
| 
       478 
     | 
    
         
            -
             
     | 
| 
       479 
     | 
    
         
            -
                - Closed on  
     | 
| 
       480 
     | 
    
         
            -
                - Closed on  
     | 
| 
       481 
     | 
    
         
            -
                - Closed on  
     | 
| 
       482 
     | 
    
         
            -
                - Early Close 12pm on  
     | 
| 
       483 
     | 
    
         
            -
                -  
     | 
| 
       484 
     | 
    
         
            -
                - Closed on  
     | 
| 
       485 
     | 
    
         
            -
                - Early Close  
     | 
| 
       486 
     | 
    
         
            -
                - Closed on  
     | 
| 
       487 
     | 
    
         
            -
                -  
     | 
| 
       488 
     | 
    
         
            -
                - Closed on  
     | 
| 
       489 
     | 
    
         
            -
                -  
     | 
| 
       490 
     | 
    
         
            -
                -  
     | 
| 
       491 
     | 
    
         
            -
                - Closed on  
     | 
| 
       492 
     | 
    
         
            -
                -  
     | 
| 
       493 
     | 
    
         
            -
                - Closed on  
     | 
| 
       494 
     | 
    
         
            -
                -  
     | 
| 
       495 
     | 
    
         
            -
                - Closed on  
     | 
| 
       496 
     | 
    
         
            -
                - Closed on  
     | 
| 
       497 
     | 
    
         
            -
                -  
     | 
| 
       498 
     | 
    
         
            -
                -  
     | 
| 
       499 
     | 
    
         
            -
                - Closed on  
     | 
| 
       500 
     | 
    
         
            -
                - Closed on  
     | 
| 
       501 
     | 
    
         
            -
                - Closed on  
     | 
| 
       502 
     | 
    
         
            -
                - Closed on  
     | 
| 
       503 
     | 
    
         
            -
                -  
     | 
| 
       504 
     | 
    
         
            -
                -  
     | 
| 
       505 
     | 
    
         
            -
                -  
     | 
| 
       506 
     | 
    
         
            -
                -  
     | 
| 
       507 
     | 
    
         
            -
                - Closed on  
     | 
| 
       508 
     | 
    
         
            -
                - Closed on  
     | 
| 
       509 
     | 
    
         
            -
                - Closed on  
     | 
| 
       510 
     | 
    
         
            -
                -  
     | 
| 
       511 
     | 
    
         
            -
                - Closed on  
     | 
| 
       512 
     | 
    
         
            -
                -  
     | 
| 
       513 
     | 
    
         
            -
                -  
     | 
| 
       514 
     | 
    
         
            -
                -  
     | 
| 
       515 
     | 
    
         
            -
                -  
     | 
| 
       516 
     | 
    
         
            -
                - Closed on  
     | 
| 
       517 
     | 
    
         
            -
                -  
     | 
| 
       518 
     | 
    
         
            -
                - Closed on  
     | 
| 
       519 
     | 
    
         
            -
                -  
     | 
| 
       520 
     | 
    
         
            -
                - Closed on  
     | 
| 
       521 
     | 
    
         
            -
                -  
     | 
| 
       522 
     | 
    
         
            -
                -  
     | 
| 
       523 
     | 
    
         
            -
                - Closed on  
     | 
| 
       524 
     | 
    
         
            -
                - Closed on May  
     | 
| 
       525 
     | 
    
         
            -
                - Closed on  
     | 
| 
       526 
     | 
    
         
            -
                -  
     | 
| 
       527 
     | 
    
         
            -
                - Closed on  
     | 
| 
       528 
     | 
    
         
            -
                - Closed on  
     | 
| 
       529 
     | 
    
         
            -
                - Closed on  
     | 
| 
       530 
     | 
    
         
            -
                - Closed on  
     | 
| 
       531 
     | 
    
         
            -
                - Closed on  
     | 
| 
       532 
     | 
    
         
            -
                - Closed on  
     | 
| 
       533 
     | 
    
         
            -
                -  
     | 
| 
       534 
     | 
    
         
            -
                - Closed on  
     | 
| 
       535 
     | 
    
         
            -
                -  
     | 
| 
       536 
     | 
    
         
            -
                - Closed on  
     | 
| 
       537 
     | 
    
         
            -
                -  
     | 
| 
       538 
     | 
    
         
            -
                - Closed on  
     | 
| 
       539 
     | 
    
         
            -
                - Closed on  
     | 
| 
       540 
     | 
    
         
            -
                -  
     | 
| 
       541 
     | 
    
         
            -
                - Closed on Nov  
     | 
| 
       542 
     | 
    
         
            -
                - Early  
     | 
| 
       543 
     | 
    
         
            -
                - Closed on  
     | 
| 
       544 
     | 
    
         
            -
                -  
     | 
| 
       545 
     | 
    
         
            -
                - Closed on  
     | 
| 
       546 
     | 
    
         
            -
                - Closed on  
     | 
| 
       547 
     | 
    
         
            -
                - Closed on  
     | 
| 
       548 
     | 
    
         
            -
                - Closed on  
     | 
| 
       549 
     | 
    
         
            -
                -  
     | 
| 
       550 
     | 
    
         
            -
                - Closed on  
     | 
| 
       551 
     | 
    
         
            -
                - Closed on  
     | 
| 
       552 
     | 
    
         
            -
                - Closed on  
     | 
| 
       553 
     | 
    
         
            -
                -  
     | 
| 
       554 
     | 
    
         
            -
                -  
     | 
| 
       555 
     | 
    
         
            -
                - Closed on  
     | 
| 
       556 
     | 
    
         
            -
                -  
     | 
| 
       557 
     | 
    
         
            -
                - Closed on  
     | 
| 
       558 
     | 
    
         
            -
                - Closed on  
     | 
| 
       559 
     | 
    
         
            -
                - Closed on  
     | 
| 
       560 
     | 
    
         
            -
                -  
     | 
| 
       561 
     | 
    
         
            -
                -  
     | 
| 
       562 
     | 
    
         
            -
                -  
     | 
| 
       563 
     | 
    
         
            -
                -  
     | 
| 
       564 
     | 
    
         
            -
                -  
     | 
| 
       565 
     | 
    
         
            -
                - Closed on  
     | 
| 
       566 
     | 
    
         
            -
                - Closed on  
     | 
| 
       567 
     | 
    
         
            -
                - Closed on  
     | 
| 
       568 
     | 
    
         
            -
                -  
     | 
| 
       569 
     | 
    
         
            -
                -  
     | 
| 
       570 
     | 
    
         
            -
                -  
     | 
| 
       571 
     | 
    
         
            -
             
     | 
| 
       572 
     | 
    
         
            -
                - Closed on  
     | 
| 
       573 
     | 
    
         
            -
                - Closed on  
     | 
| 
       574 
     | 
    
         
            -
                - Closed on  
     | 
| 
       575 
     | 
    
         
            -
                -  
     | 
| 
       576 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       577 
     | 
    
         
            -
                -  
     | 
| 
       578 
     | 
    
         
            -
             
     | 
| 
       579 
     | 
    
         
            -
                - Closed on  
     | 
| 
       580 
     | 
    
         
            -
                - Closed on  
     | 
| 
       581 
     | 
    
         
            -
                - Closed on  
     | 
| 
       582 
     | 
    
         
            -
                - Closed on  
     | 
| 
       583 
     | 
    
         
            -
                -  
     | 
| 
       584 
     | 
    
         
            -
                - Closed on Saturdays  
     | 
| 
       585 
     | 
    
         
            -
                - Closed on  
     | 
| 
       586 
     | 
    
         
            -
                - Closed on  
     | 
| 
       587 
     | 
    
         
            -
                - Closed on  
     | 
| 
       588 
     | 
    
         
            -
                - Closed on  
     | 
| 
       589 
     | 
    
         
            -
                -  
     | 
| 
       590 
     | 
    
         
            -
                - Closed on  
     | 
| 
       591 
     | 
    
         
            -
                - Closed on  
     | 
| 
       592 
     | 
    
         
            -
                -  
     | 
| 
       593 
     | 
    
         
            -
                - Closed on  
     | 
| 
       594 
     | 
    
         
            -
                -  
     | 
| 
       595 
     | 
    
         
            -
                -  
     | 
| 
       596 
     | 
    
         
            -
                -  
     | 
| 
       597 
     | 
    
         
            -
             
     | 
| 
       598 
     | 
    
         
            -
             
     | 
| 
       599 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       600 
     | 
    
         
            -
                - Closed on  
     | 
| 
       601 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       602 
     | 
    
         
            -
                -  
     | 
| 
       603 
     | 
    
         
            -
                -  
     | 
| 
       604 
     | 
    
         
            -
             
     | 
| 
       605 
     | 
    
         
            -
             
     | 
| 
       606 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       607 
     | 
    
         
            -
                -  
     | 
| 
       608 
     | 
    
         
            -
                -  
     | 
| 
       609 
     | 
    
         
            -
                - Closed on  
     | 
| 
       610 
     | 
    
         
            -
                -  
     | 
| 
       611 
     | 
    
         
            -
                -  
     | 
| 
       612 
     | 
    
         
            -
                -  
     | 
| 
       613 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       614 
     | 
    
         
            -
                -  
     | 
| 
       615 
     | 
    
         
            -
                -  
     | 
| 
       616 
     | 
    
         
            -
                -  
     | 
| 
       617 
     | 
    
         
            -
                -  
     | 
| 
       618 
     | 
    
         
            -
                -  
     | 
| 
       619 
     | 
    
         
            -
                -  
     | 
| 
       620 
     | 
    
         
            -
                -  
     | 
| 
       621 
     | 
    
         
            -
                -  
     | 
| 
       622 
     | 
    
         
            -
                - Closed on  
     | 
| 
       623 
     | 
    
         
            -
                -  
     | 
| 
       624 
     | 
    
         
            -
                -  
     | 
| 
       625 
     | 
    
         
            -
                -  
     | 
| 
       626 
     | 
    
         
            -
                -  
     | 
| 
       627 
     | 
    
         
            -
                -  
     | 
| 
       628 
     | 
    
         
            -
                - Early Closes 14:00 on Jan  
     | 
| 
       629 
     | 
    
         
            -
                - Closed on Feb  
     | 
| 
       630 
     | 
    
         
            -
                -  
     | 
| 
       631 
     | 
    
         
            -
                -  
     | 
| 
       632 
     | 
    
         
            -
                -  
     | 
| 
       633 
     | 
    
         
            -
                -  
     | 
| 
       634 
     | 
    
         
            -
                -  
     | 
| 
       635 
     | 
    
         
            -
                -  
     | 
| 
       636 
     | 
    
         
            -
                -  
     | 
| 
       637 
     | 
    
         
            -
                -  
     | 
| 
       638 
     | 
    
         
            -
                -  
     | 
| 
       639 
     | 
    
         
            -
                - Closed on  
     | 
| 
       640 
     | 
    
         
            -
                - Late Open  
     | 
| 
       641 
     | 
    
         
            -
                -  
     | 
| 
       642 
     | 
    
         
            -
                -  
     | 
| 
       643 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       644 
     | 
    
         
            -
                -  
     | 
| 
       645 
     | 
    
         
            -
                -  
     | 
| 
       646 
     | 
    
         
            -
                -  
     | 
| 
       647 
     | 
    
         
            -
                -  
     | 
| 
       648 
     | 
    
         
            -
                -  
     | 
| 
       649 
     | 
    
         
            -
                -  
     | 
| 
       650 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       651 
     | 
    
         
            -
                -  
     | 
| 
       652 
     | 
    
         
            -
                -  
     | 
| 
       653 
     | 
    
         
            -
                -  
     | 
| 
       654 
     | 
    
         
            -
                -  
     | 
| 
       655 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       656 
     | 
    
         
            -
                -  
     | 
| 
       657 
     | 
    
         
            -
                - NOT IMPLEMENTED Break 10: 
     | 
| 
       658 
     | 
    
         
            -
                -  
     | 
| 
       659 
     | 
    
         
            -
                - Late Open  
     | 
| 
       660 
     | 
    
         
            -
                -  
     | 
| 
       661 
     | 
    
         
            -
                -  
     | 
| 
       662 
     | 
    
         
            -
                - NOT IMPLEMENTED Break 1 minute time UNKNOWN on  
     | 
| 
       663 
     | 
    
         
            -
                - NOT IMPLEMENTED Break 11:11 
     | 
| 
       664 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       665 
     | 
    
         
            -
                -  
     | 
| 
       666 
     | 
    
         
            -
                -  
     | 
| 
       667 
     | 
    
         
            -
                -  
     | 
| 
       668 
     | 
    
         
            -
                -  
     | 
| 
       669 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       670 
     | 
    
         
            -
                -  
     | 
| 
       671 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       672 
     | 
    
         
            -
                - Early  
     | 
| 
       673 
     | 
    
         
            -
                - Early  
     | 
| 
       674 
     | 
    
         
            -
                -  
     | 
| 
       675 
     | 
    
         
            -
                -  
     | 
| 
       676 
     | 
    
         
            -
                -  
     | 
| 
       677 
     | 
    
         
            -
                -  
     | 
| 
       678 
     | 
    
         
            -
                -  
     | 
| 
       679 
     | 
    
         
            -
                -  
     | 
| 
       680 
     | 
    
         
            -
                -  
     | 
| 
       681 
     | 
    
         
            -
                -  
     | 
| 
       682 
     | 
    
         
            -
                -  
     | 
| 
       683 
     | 
    
         
            -
                -  
     | 
| 
       684 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       685 
     | 
    
         
            -
                -  
     | 
| 
       686 
     | 
    
         
            -
                -  
     | 
| 
       687 
     | 
    
         
            -
                -  
     | 
| 
       688 
     | 
    
         
            -
                -  
     | 
| 
       689 
     | 
    
         
            -
                -  
     | 
| 
       690 
     | 
    
         
            -
                - Early Close  
     | 
| 
       691 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       692 
     | 
    
         
            -
                -  
     | 
| 
       693 
     | 
    
         
            -
                -  
     | 
| 
       694 
     | 
    
         
            -
                -  
     | 
| 
       695 
     | 
    
         
            -
                - Early Close  
     | 
| 
       696 
     | 
    
         
            -
                - Early Close 1pm on Nov  
     | 
| 
       697 
     | 
    
         
            -
                -  
     | 
| 
       698 
     | 
    
         
            -
                -  
     | 
| 
       699 
     | 
    
         
            -
                -  
     | 
| 
       700 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       701 
     | 
    
         
            -
                -  
     | 
| 
       702 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       703 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       704 
     | 
    
         
            -
                -  
     | 
| 
       705 
     | 
    
         
            -
                - Early Close  
     | 
| 
       706 
     | 
    
         
            -
                -  
     | 
| 
       707 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       708 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       709 
     | 
    
         
            -
                -  
     | 
| 
       710 
     | 
    
         
            -
                -  
     | 
| 
       711 
     | 
    
         
            -
                -  
     | 
| 
       712 
     | 
    
         
            -
                - Early Close  
     | 
| 
       713 
     | 
    
         
            -
                -  
     | 
| 
       714 
     | 
    
         
            -
                -  
     | 
| 
       715 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       716 
     | 
    
         
            -
                -  
     | 
| 
       717 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       718 
     | 
    
         
            -
                -  
     | 
| 
       719 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       720 
     | 
    
         
            -
                -  
     | 
| 
       721 
     | 
    
         
            -
                - NOT IMPLEMENTED Break  
     | 
| 
       722 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       723 
     | 
    
         
            -
                -  
     | 
| 
       724 
     | 
    
         
            -
                -  
     | 
| 
       725 
     | 
    
         
            -
                -  
     | 
| 
       726 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       727 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       728 
     | 
    
         
            -
                - NOT IMPLEMENTED Break 10: 
     | 
| 
       729 
     | 
    
         
            -
                - Early Close 1pm on Jul  
     | 
| 
       730 
     | 
    
         
            -
                -  
     | 
| 
       731 
     | 
    
         
            -
                -  
     | 
| 
       732 
     | 
    
         
            -
                -  
     | 
| 
       733 
     | 
    
         
            -
                -  
     | 
| 
       734 
     | 
    
         
            -
                -  
     | 
| 
       735 
     | 
    
         
            -
                -  
     | 
| 
       736 
     | 
    
         
            -
                -  
     | 
| 
       737 
     | 
    
         
            -
                -  
     | 
| 
       738 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       739 
     | 
    
         
            -
                - Early Close 1pm on Dec  
     | 
| 
       740 
     | 
    
         
            -
                -  
     | 
| 
       741 
     | 
    
         
            -
                -  
     | 
| 
       742 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       743 
     | 
    
         
            -
                -  
     | 
| 
       744 
     | 
    
         
            -
                - Early Close 1pm on Nov  
     | 
| 
       745 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       746 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       747 
     | 
    
         
            -
                - Late Open 9:32am on  
     | 
| 
       748 
     | 
    
         
            -
                - Closed on  
     | 
| 
       749 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       750 
     | 
    
         
            -
                - Early Close  
     | 
| 
       751 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       752 
     | 
    
         
            -
                - Early Close 1pm on Jul  
     | 
| 
       753 
     | 
    
         
            -
                - Early Close 1pm on Nov  
     | 
| 
       754 
     | 
    
         
            -
                -  
     | 
| 
       755 
     | 
    
         
            -
                -  
     | 
| 
       756 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       757 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       758 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       759 
     | 
    
         
            -
                -  
     | 
| 
       760 
     | 
    
         
            -
             
     | 
| 
       761 
     | 
    
         
            -
                 
     | 
| 
       762 
     | 
    
         
            -
                 
     | 
| 
       763 
     | 
    
         
            -
             
     | 
| 
       764 
     | 
    
         
            -
                 
     | 
| 
       765 
     | 
    
         
            -
                - Early Close 1pm on Nov  
     | 
| 
       766 
     | 
    
         
            -
             
     | 
| 
       767 
     | 
    
         
            -
             
     | 
| 
       768 
     | 
    
         
            -
                 
     | 
| 
       769 
     | 
    
         
            -
                 
     | 
| 
       770 
     | 
    
         
            -
             
     | 
| 
       771 
     | 
    
         
            -
                 
     | 
| 
       772 
     | 
    
         
            -
             
     | 
| 
       773 
     | 
    
         
            -
             
     | 
| 
       774 
     | 
    
         
            -
                - 
     | 
| 
       775 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       776 
     | 
    
         
            -
                -  
     | 
| 
       777 
     | 
    
         
            -
             
     | 
| 
       778 
     | 
    
         
            -
                 
     | 
| 
       779 
     | 
    
         
            -
             
     | 
| 
       780 
     | 
    
         
            -
                - 
     | 
| 
       781 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       782 
     | 
    
         
            -
             
     | 
| 
       783 
     | 
    
         
            -
                 
     | 
| 
       784 
     | 
    
         
            -
             
     | 
| 
       785 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       786 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       787 
     | 
    
         
            -
             
     | 
| 
       788 
     | 
    
         
            -
                 
     | 
| 
       789 
     | 
    
         
            -
             
     | 
| 
       790 
     | 
    
         
            -
                - 
     | 
| 
       791 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       792 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       793 
     | 
    
         
            -
                -  
     | 
| 
       794 
     | 
    
         
            -
             
     | 
| 
       795 
     | 
    
         
            -
                - 
     | 
| 
       796 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       797 
     | 
    
         
            -
                - Early Close 1pm on  
     | 
| 
       798 
     | 
    
         
            -
             
     | 
| 
       799 
     | 
    
         
            -
                 
     | 
| 
       800 
     | 
    
         
            -
                -  
     | 
| 
       801 
     | 
    
         
            -
                - Early Close 1pm on Dec 24,  
     | 
| 
       802 
     | 
    
         
            -
             
     | 
| 
       803 
     | 
    
         
            -
             
     | 
| 
       804 
     | 
    
         
            -
                 
     | 
| 
       805 
     | 
    
         
            -
             
     | 
| 
       806 
     | 
    
         
            -
                 
     | 
| 
       807 
     | 
    
         
            -
                 
     | 
| 
       808 
     | 
    
         
            -
             
     | 
| 
       809 
     | 
    
         
            -
             
     | 
| 
       810 
     | 
    
         
            -
             
     | 
| 
       811 
     | 
    
         
            -
                 
     | 
| 
       812 
     | 
    
         
            -
             
     | 
| 
       813 
     | 
    
         
            -
                 
     | 
| 
       814 
     | 
    
         
            -
             
     | 
| 
       815 
     | 
    
         
            -
             
     | 
| 
       816 
     | 
    
         
            -
             
     | 
| 
       817 
     | 
    
         
            -
             
     | 
| 
       818 
     | 
    
         
            -
             
     | 
| 
       819 
     | 
    
         
            -
             
     | 
| 
       820 
     | 
    
         
            -
             
     | 
| 
       821 
     | 
    
         
            -
                    " 
     | 
| 
       822 
     | 
    
         
            -
             
     | 
| 
       823 
     | 
    
         
            -
             
     | 
| 
       824 
     | 
    
         
            -
             
     | 
| 
       825 
     | 
    
         
            -
             
     | 
| 
       826 
     | 
    
         
            -
             
     | 
| 
       827 
     | 
    
         
            -
             
     | 
| 
       828 
     | 
    
         
            -
             
     | 
| 
       829 
     | 
    
         
            -
             
     | 
| 
       830 
     | 
    
         
            -
             
     | 
| 
       831 
     | 
    
         
            -
                 
     | 
| 
       832 
     | 
    
         
            -
                 
     | 
| 
       833 
     | 
    
         
            -
             
     | 
| 
       834 
     | 
    
         
            -
             
     | 
| 
       835 
     | 
    
         
            -
                 
     | 
| 
       836 
     | 
    
         
            -
             
     | 
| 
       837 
     | 
    
         
            -
             
     | 
| 
       838 
     | 
    
         
            -
             
     | 
| 
       839 
     | 
    
         
            -
                 
     | 
| 
       840 
     | 
    
         
            -
             
     | 
| 
       841 
     | 
    
         
            -
             
     | 
| 
       842 
     | 
    
         
            -
             
     | 
| 
       843 
     | 
    
         
            -
                 
     | 
| 
       844 
     | 
    
         
            -
             
     | 
| 
       845 
     | 
    
         
            -
             
     | 
| 
       846 
     | 
    
         
            -
             
     | 
| 
       847 
     | 
    
         
            -
                def  
     | 
| 
       848 
     | 
    
         
            -
                    "" 
     | 
| 
       849 
     | 
    
         
            -
             
     | 
| 
       850 
     | 
    
         
            -
             
     | 
| 
       851 
     | 
    
         
            -
             
     | 
| 
       852 
     | 
    
         
            -
                     
     | 
| 
       853 
     | 
    
         
            -
             
     | 
| 
       854 
     | 
    
         
            -
             
     | 
| 
       855 
     | 
    
         
            -
             
     | 
| 
       856 
     | 
    
         
            -
             
     | 
| 
       857 
     | 
    
         
            -
                     
     | 
| 
       858 
     | 
    
         
            -
             
     | 
| 
       859 
     | 
    
         
            -
             
     | 
| 
       860 
     | 
    
         
            -
             
     | 
| 
       861 
     | 
    
         
            -
                    )
         
     | 
| 
       862 
     | 
    
         
            -
             
     | 
| 
       863 
     | 
    
         
            -
             
     | 
| 
       864 
     | 
    
         
            -
             
     | 
| 
       865 
     | 
    
         
            -
             
     | 
| 
       866 
     | 
    
         
            -
             
     | 
| 
       867 
     | 
    
         
            -
                         
     | 
| 
       868 
     | 
    
         
            -
             
     | 
| 
       869 
     | 
    
         
            -
             
     | 
| 
       870 
     | 
    
         
            -
             
     | 
| 
       871 
     | 
    
         
            -
             
     | 
| 
       872 
     | 
    
         
            -
             
     | 
| 
       873 
     | 
    
         
            -
             
     | 
| 
       874 
     | 
    
         
            -
             
     | 
| 
       875 
     | 
    
         
            -
                             
     | 
| 
       876 
     | 
    
         
            -
                             
     | 
| 
       877 
     | 
    
         
            -
                             
     | 
| 
       878 
     | 
    
         
            -
                             
     | 
| 
       879 
     | 
    
         
            -
                             
     | 
| 
       880 
     | 
    
         
            -
                             
     | 
| 
       881 
     | 
    
         
            -
                             
     | 
| 
       882 
     | 
    
         
            -
                             
     | 
| 
       883 
     | 
    
         
            -
                             
     | 
| 
       884 
     | 
    
         
            -
                             
     | 
| 
       885 
     | 
    
         
            -
                             
     | 
| 
       886 
     | 
    
         
            -
                             
     | 
| 
       887 
     | 
    
         
            -
                             
     | 
| 
       888 
     | 
    
         
            -
                             
     | 
| 
       889 
     | 
    
         
            -
                             
     | 
| 
       890 
     | 
    
         
            -
                             
     | 
| 
       891 
     | 
    
         
            -
                             
     | 
| 
       892 
     | 
    
         
            -
                             
     | 
| 
       893 
     | 
    
         
            -
                             
     | 
| 
       894 
     | 
    
         
            -
                             
     | 
| 
       895 
     | 
    
         
            -
                             
     | 
| 
       896 
     | 
    
         
            -
                             
     | 
| 
       897 
     | 
    
         
            -
             
     | 
| 
       898 
     | 
    
         
            -
             
     | 
| 
       899 
     | 
    
         
            -
             
     | 
| 
       900 
     | 
    
         
            -
             
     | 
| 
       901 
     | 
    
         
            -
             
     | 
| 
       902 
     | 
    
         
            -
             
     | 
| 
       903 
     | 
    
         
            -
             
     | 
| 
       904 
     | 
    
         
            -
             
     | 
| 
       905 
     | 
    
         
            -
             
     | 
| 
       906 
     | 
    
         
            -
             
     | 
| 
       907 
     | 
    
         
            -
             
     | 
| 
       908 
     | 
    
         
            -
             
     | 
| 
       909 
     | 
    
         
            -
             
     | 
| 
       910 
     | 
    
         
            -
             
     | 
| 
       911 
     | 
    
         
            -
                             
     | 
| 
       912 
     | 
    
         
            -
                             
     | 
| 
       913 
     | 
    
         
            -
                             
     | 
| 
       914 
     | 
    
         
            -
                             
     | 
| 
       915 
     | 
    
         
            -
                             
     | 
| 
       916 
     | 
    
         
            -
                             
     | 
| 
       917 
     | 
    
         
            -
                             
     | 
| 
       918 
     | 
    
         
            -
                             
     | 
| 
       919 
     | 
    
         
            -
                             
     | 
| 
       920 
     | 
    
         
            -
                             
     | 
| 
       921 
     | 
    
         
            -
                             
     | 
| 
       922 
     | 
    
         
            -
                             
     | 
| 
       923 
     | 
    
         
            -
                             
     | 
| 
       924 
     | 
    
         
            -
                             
     | 
| 
       925 
     | 
    
         
            -
                             
     | 
| 
       926 
     | 
    
         
            -
                             
     | 
| 
       927 
     | 
    
         
            -
                             
     | 
| 
       928 
     | 
    
         
            -
                             
     | 
| 
       929 
     | 
    
         
            -
                             
     | 
| 
       930 
     | 
    
         
            -
                             
     | 
| 
       931 
     | 
    
         
            -
                             
     | 
| 
       932 
     | 
    
         
            -
                             
     | 
| 
       933 
     | 
    
         
            -
                             
     | 
| 
       934 
     | 
    
         
            -
                             
     | 
| 
       935 
     | 
    
         
            -
                             
     | 
| 
       936 
     | 
    
         
            -
                             
     | 
| 
       937 
     | 
    
         
            -
                             
     | 
| 
       938 
     | 
    
         
            -
                             
     | 
| 
       939 
     | 
    
         
            -
                             
     | 
| 
       940 
     | 
    
         
            -
                             
     | 
| 
       941 
     | 
    
         
            -
                             
     | 
| 
       942 
     | 
    
         
            -
                             
     | 
| 
       943 
     | 
    
         
            -
                             
     | 
| 
       944 
     | 
    
         
            -
                             
     | 
| 
       945 
     | 
    
         
            -
                             
     | 
| 
       946 
     | 
    
         
            -
                             
     | 
| 
       947 
     | 
    
         
            -
                             
     | 
| 
       948 
     | 
    
         
            -
                             
     | 
| 
       949 
     | 
    
         
            -
                             
     | 
| 
       950 
     | 
    
         
            -
                             
     | 
| 
       951 
     | 
    
         
            -
                             
     | 
| 
       952 
     | 
    
         
            -
                             
     | 
| 
       953 
     | 
    
         
            -
                             
     | 
| 
       954 
     | 
    
         
            -
                             
     | 
| 
       955 
     | 
    
         
            -
                             
     | 
| 
       956 
     | 
    
         
            -
                             
     | 
| 
       957 
     | 
    
         
            -
                             
     | 
| 
       958 
     | 
    
         
            -
                             
     | 
| 
       959 
     | 
    
         
            -
                             
     | 
| 
       960 
     | 
    
         
            -
                             
     | 
| 
       961 
     | 
    
         
            -
                             
     | 
| 
       962 
     | 
    
         
            -
                             
     | 
| 
       963 
     | 
    
         
            -
                             
     | 
| 
       964 
     | 
    
         
            -
                             
     | 
| 
       965 
     | 
    
         
            -
                             
     | 
| 
       966 
     | 
    
         
            -
                             
     | 
| 
       967 
     | 
    
         
            -
                             
     | 
| 
       968 
     | 
    
         
            -
                             
     | 
| 
       969 
     | 
    
         
            -
                             
     | 
| 
       970 
     | 
    
         
            -
                             
     | 
| 
       971 
     | 
    
         
            -
                             
     | 
| 
       972 
     | 
    
         
            -
                             
     | 
| 
       973 
     | 
    
         
            -
                             
     | 
| 
       974 
     | 
    
         
            -
                             
     | 
| 
       975 
     | 
    
         
            -
                             
     | 
| 
       976 
     | 
    
         
            -
                             
     | 
| 
       977 
     | 
    
         
            -
                             
     | 
| 
       978 
     | 
    
         
            -
                             
     | 
| 
       979 
     | 
    
         
            -
                             
     | 
| 
       980 
     | 
    
         
            -
                             
     | 
| 
       981 
     | 
    
         
            -
                             
     | 
| 
       982 
     | 
    
         
            -
                             
     | 
| 
       983 
     | 
    
         
            -
                             
     | 
| 
       984 
     | 
    
         
            -
                             
     | 
| 
       985 
     | 
    
         
            -
                             
     | 
| 
       986 
     | 
    
         
            -
                             
     | 
| 
       987 
     | 
    
         
            -
                             
     | 
| 
       988 
     | 
    
         
            -
                             
     | 
| 
       989 
     | 
    
         
            -
                             
     | 
| 
       990 
     | 
    
         
            -
                             
     | 
| 
       991 
     | 
    
         
            -
                             
     | 
| 
       992 
     | 
    
         
            -
                             
     | 
| 
       993 
     | 
    
         
            -
                             
     | 
| 
       994 
     | 
    
         
            -
                             
     | 
| 
       995 
     | 
    
         
            -
                             
     | 
| 
       996 
     | 
    
         
            -
             
     | 
| 
       997 
     | 
    
         
            -
             
     | 
| 
       998 
     | 
    
         
            -
             
     | 
| 
       999 
     | 
    
         
            -
             
     | 
| 
       1000 
     | 
    
         
            -
             
     | 
| 
       1001 
     | 
    
         
            -
             
     | 
| 
       1002 
     | 
    
         
            -
             
     | 
| 
       1003 
     | 
    
         
            -
             
     | 
| 
       1004 
     | 
    
         
            -
             
     | 
| 
       1005 
     | 
    
         
            -
             
     | 
| 
       1006 
     | 
    
         
            -
             
     | 
| 
       1007 
     | 
    
         
            -
             
     | 
| 
       1008 
     | 
    
         
            -
             
     | 
| 
       1009 
     | 
    
         
            -
                         
     | 
| 
       1010 
     | 
    
         
            -
             
     | 
| 
       1011 
     | 
    
         
            -
                             
     | 
| 
       1012 
     | 
    
         
            -
             
     | 
| 
       1013 
     | 
    
         
            -
             
     | 
| 
       1014 
     | 
    
         
            -
             
     | 
| 
       1015 
     | 
    
         
            -
             
     | 
| 
       1016 
     | 
    
         
            -
             
     | 
| 
       1017 
     | 
    
         
            -
             
     | 
| 
       1018 
     | 
    
         
            -
             
     | 
| 
       1019 
     | 
    
         
            -
             
     | 
| 
       1020 
     | 
    
         
            -
             
     | 
| 
       1021 
     | 
    
         
            -
             
     | 
| 
       1022 
     | 
    
         
            -
             
     | 
| 
       1023 
     | 
    
         
            -
             
     | 
| 
       1024 
     | 
    
         
            -
             
     | 
| 
       1025 
     | 
    
         
            -
             
     | 
| 
       1026 
     | 
    
         
            -
             
     | 
| 
       1027 
     | 
    
         
            -
             
     | 
| 
       1028 
     | 
    
         
            -
             
     | 
| 
       1029 
     | 
    
         
            -
             
     | 
| 
       1030 
     | 
    
         
            -
             
     | 
| 
       1031 
     | 
    
         
            -
                             
     | 
| 
       1032 
     | 
    
         
            -
             
     | 
| 
       1033 
     | 
    
         
            -
             
     | 
| 
       1034 
     | 
    
         
            -
             
     | 
| 
       1035 
     | 
    
         
            -
             
     | 
| 
       1036 
     | 
    
         
            -
             
     | 
| 
       1037 
     | 
    
         
            -
             
     | 
| 
       1038 
     | 
    
         
            -
             
     | 
| 
       1039 
     | 
    
         
            -
             
     | 
| 
       1040 
     | 
    
         
            -
             
     | 
| 
       1041 
     | 
    
         
            -
             
     | 
| 
       1042 
     | 
    
         
            -
             
     | 
| 
       1043 
     | 
    
         
            -
                                 
     | 
| 
       1044 
     | 
    
         
            -
             
     | 
| 
       1045 
     | 
    
         
            -
             
     | 
| 
       1046 
     | 
    
         
            -
             
     | 
| 
       1047 
     | 
    
         
            -
             
     | 
| 
       1048 
     | 
    
         
            -
             
     | 
| 
       1049 
     | 
    
         
            -
             
     | 
| 
       1050 
     | 
    
         
            -
             
     | 
| 
       1051 
     | 
    
         
            -
             
     | 
| 
       1052 
     | 
    
         
            -
             
     | 
| 
       1053 
     | 
    
         
            -
             
     | 
| 
       1054 
     | 
    
         
            -
             
     | 
| 
       1055 
     | 
    
         
            -
             
     | 
| 
       1056 
     | 
    
         
            -
             
     | 
| 
       1057 
     | 
    
         
            -
             
     | 
| 
       1058 
     | 
    
         
            -
             
     | 
| 
       1059 
     | 
    
         
            -
             
     | 
| 
       1060 
     | 
    
         
            -
             
     | 
| 
       1061 
     | 
    
         
            -
             
     | 
| 
       1062 
     | 
    
         
            -
             
     | 
| 
       1063 
     | 
    
         
            -
             
     | 
| 
       1064 
     | 
    
         
            -
             
     | 
| 
       1065 
     | 
    
         
            -
                         
     | 
| 
       1066 
     | 
    
         
            -
             
     | 
| 
       1067 
     | 
    
         
            -
                             
     | 
| 
       1068 
     | 
    
         
            -
             
     | 
| 
       1069 
     | 
    
         
            -
             
     | 
| 
       1070 
     | 
    
         
            -
             
     | 
| 
       1071 
     | 
    
         
            -
             
     | 
| 
       1072 
     | 
    
         
            -
             
     | 
| 
       1073 
     | 
    
         
            -
             
     | 
| 
       1074 
     | 
    
         
            -
             
     | 
| 
       1075 
     | 
    
         
            -
                             
     | 
| 
       1076 
     | 
    
         
            -
             
     | 
| 
       1077 
     | 
    
         
            -
             
     | 
| 
       1078 
     | 
    
         
            -
             
     | 
| 
       1079 
     | 
    
         
            -
             
     | 
| 
       1080 
     | 
    
         
            -
             
     | 
| 
       1081 
     | 
    
         
            -
             
     | 
| 
       1082 
     | 
    
         
            -
             
     | 
| 
       1083 
     | 
    
         
            -
             
     | 
| 
       1084 
     | 
    
         
            -
                         
     | 
| 
       1085 
     | 
    
         
            -
             
     | 
| 
       1086 
     | 
    
         
            -
                             
     | 
| 
       1087 
     | 
    
         
            -
             
     | 
| 
       1088 
     | 
    
         
            -
             
     | 
| 
       1089 
     | 
    
         
            -
             
     | 
| 
       1090 
     | 
    
         
            -
             
     | 
| 
       1091 
     | 
    
         
            -
             
     | 
| 
       1092 
     | 
    
         
            -
                         
     | 
| 
       1093 
     | 
    
         
            -
             
     | 
| 
       1094 
     | 
    
         
            -
                             
     | 
| 
       1095 
     | 
    
         
            -
             
     | 
| 
       1096 
     | 
    
         
            -
             
     | 
| 
       1097 
     | 
    
         
            -
             
     | 
| 
       1098 
     | 
    
         
            -
             
     | 
| 
       1099 
     | 
    
         
            -
             
     | 
| 
       1100 
     | 
    
         
            -
                         
     | 
| 
       1101 
     | 
    
         
            -
             
     | 
| 
       1102 
     | 
    
         
            -
                             
     | 
| 
       1103 
     | 
    
         
            -
             
     | 
| 
       1104 
     | 
    
         
            -
             
     | 
| 
       1105 
     | 
    
         
            -
             
     | 
| 
       1106 
     | 
    
         
            -
             
     | 
| 
       1107 
     | 
    
         
            -
             
     | 
| 
       1108 
     | 
    
         
            -
                         
     | 
| 
       1109 
     | 
    
         
            -
             
     | 
| 
       1110 
     | 
    
         
            -
                             
     | 
| 
       1111 
     | 
    
         
            -
             
     | 
| 
       1112 
     | 
    
         
            -
             
     | 
| 
       1113 
     | 
    
         
            -
             
     | 
| 
       1114 
     | 
    
         
            -
             
     | 
| 
       1115 
     | 
    
         
            -
             
     | 
| 
       1116 
     | 
    
         
            -
                         
     | 
| 
       1117 
     | 
    
         
            -
             
     | 
| 
       1118 
     | 
    
         
            -
             
     | 
| 
       1119 
     | 
    
         
            -
             
     | 
| 
       1120 
     | 
    
         
            -
             
     | 
| 
       1121 
     | 
    
         
            -
             
     | 
| 
       1122 
     | 
    
         
            -
             
     | 
| 
       1123 
     | 
    
         
            -
                         
     | 
| 
       1124 
     | 
    
         
            -
             
     | 
| 
       1125 
     | 
    
         
            -
             
     | 
| 
       1126 
     | 
    
         
            -
             
     | 
| 
       1127 
     | 
    
         
            -
             
     | 
| 
       1128 
     | 
    
         
            -
                     
     | 
| 
       1129 
     | 
    
         
            -
                         
     | 
| 
       1130 
     | 
    
         
            -
             
     | 
| 
       1131 
     | 
    
         
            -
             
     | 
| 
       1132 
     | 
    
         
            -
                             
     | 
| 
       1133 
     | 
    
         
            -
             
     | 
| 
       1134 
     | 
    
         
            -
             
     | 
| 
       1135 
     | 
    
         
            -
             
     | 
| 
       1136 
     | 
    
         
            -
                        (
         
     | 
| 
       1137 
     | 
    
         
            -
                            time( 
     | 
| 
       1138 
     | 
    
         
            -
                             
     | 
| 
       1139 
     | 
    
         
            -
             
     | 
| 
       1140 
     | 
    
         
            -
             
     | 
| 
       1141 
     | 
    
         
            -
             
     | 
| 
       1142 
     | 
    
         
            -
             
     | 
| 
       1143 
     | 
    
         
            -
             
     | 
| 
       1144 
     | 
    
         
            -
                                ]
         
     | 
| 
       1145 
     | 
    
         
            -
                                + [
         
     | 
| 
       1146 
     | 
    
         
            -
                                    BacklogRelief2pmEarlyClose1928,
         
     | 
| 
       1147 
     | 
    
         
            -
                                    TransitStrike2pmEarlyClose1966,  # index
         
     | 
| 
       1148 
     | 
    
         
            -
                                    Backlog2pmEarlyCloses1967,  # index
         
     | 
| 
       1149 
     | 
    
         
            -
                                    Backlog2pmEarlyCloses1968,  # index
         
     | 
| 
       1150 
     | 
    
         
            -
                                    PaperworkCrisis2pmEarlyCloses1969,  # index
         
     | 
| 
       1151 
     | 
    
         
            -
                                    Backlog2pmEarlyCloses1987,
         
     | 
| 
       1152 
     | 
    
         
            -
                                ]
         
     | 
| 
       1153 
     | 
    
         
            -
                            ),  # index
         
     | 
| 
       1154 
     | 
    
         
            -
                        ),
         
     | 
| 
       1155 
     | 
    
         
            -
                        (
         
     | 
| 
       1156 
     | 
    
         
            -
                            time(14, 30, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
       1157 
     | 
    
         
            -
                            _union_many(
         
     | 
| 
       1158 
     | 
    
         
            -
             
     | 
| 
       1159 
     | 
    
         
            -
             
     | 
| 
       1160 
     | 
    
         
            -
             
     | 
| 
       1161 
     | 
    
         
            -
             
     | 
| 
       1162 
     | 
    
         
            -
             
     | 
| 
       1163 
     | 
    
         
            -
             
     | 
| 
       1164 
     | 
    
         
            -
             
     | 
| 
       1165 
     | 
    
         
            -
                             
     | 
| 
       1166 
     | 
    
         
            -
                        ),
         
     | 
| 
       1167 
     | 
    
         
            -
             
     | 
| 
       1168 
     | 
    
         
            -
             
     | 
| 
       1169 
     | 
    
         
            -
             
     | 
| 
       1170 
     | 
    
         
            -
             
     | 
| 
       1171 
     | 
    
         
            -
                     
     | 
| 
       1172 
     | 
    
         
            -
             
     | 
| 
       1173 
     | 
    
         
            -
             
     | 
| 
       1174 
     | 
    
         
            -
             
     | 
| 
       1175 
     | 
    
         
            -
             
     | 
| 
       1176 
     | 
    
         
            -
             
     | 
| 
       1177 
     | 
    
         
            -
             
     | 
| 
       1178 
     | 
    
         
            -
             
     | 
| 
       1179 
     | 
    
         
            -
             
     | 
| 
       1180 
     | 
    
         
            -
             
     | 
| 
       1181 
     | 
    
         
            -
             
     | 
| 
       1182 
     | 
    
         
            -
             
     | 
| 
       1183 
     | 
    
         
            -
                             
     | 
| 
       1184 
     | 
    
         
            -
             
     | 
| 
       1185 
     | 
    
         
            -
             
     | 
| 
       1186 
     | 
    
         
            -
             
     | 
| 
       1187 
     | 
    
         
            -
             
     | 
| 
       1188 
     | 
    
         
            -
                                 
     | 
| 
       1189 
     | 
    
         
            -
             
     | 
| 
       1190 
     | 
    
         
            -
             
     | 
| 
       1191 
     | 
    
         
            -
             
     | 
| 
       1192 
     | 
    
         
            -
             
     | 
| 
       1193 
     | 
    
         
            -
                             
     | 
| 
       1194 
     | 
    
         
            -
             
     | 
| 
       1195 
     | 
    
         
            -
             
     | 
| 
       1196 
     | 
    
         
            -
             
     | 
| 
       1197 
     | 
    
         
            -
                             
     | 
| 
       1198 
     | 
    
         
            -
             
     | 
| 
       1199 
     | 
    
         
            -
             
     | 
| 
       1200 
     | 
    
         
            -
             
     | 
| 
       1201 
     | 
    
         
            -
                             
     | 
| 
       1202 
     | 
    
         
            -
             
     | 
| 
       1203 
     | 
    
         
            -
             
     | 
| 
       1204 
     | 
    
         
            -
             
     | 
| 
       1205 
     | 
    
         
            -
             
     | 
| 
       1206 
     | 
    
         
            -
             
     | 
| 
       1207 
     | 
    
         
            -
             
     | 
| 
       1208 
     | 
    
         
            -
             
     | 
| 
       1209 
     | 
    
         
            -
             
     | 
| 
       1210 
     | 
    
         
            -
             
     | 
| 
       1211 
     | 
    
         
            -
             
     | 
| 
       1212 
     | 
    
         
            -
                             
     | 
| 
       1213 
     | 
    
         
            -
             
     | 
| 
       1214 
     | 
    
         
            -
             
     | 
| 
       1215 
     | 
    
         
            -
             
     | 
| 
       1216 
     | 
    
         
            -
             
     | 
| 
       1217 
     | 
    
         
            -
                                 
     | 
| 
       1218 
     | 
    
         
            -
             
     | 
| 
       1219 
     | 
    
         
            -
             
     | 
| 
       1220 
     | 
    
         
            -
             
     | 
| 
       1221 
     | 
    
         
            -
             
     | 
| 
       1222 
     | 
    
         
            -
                             
     | 
| 
       1223 
     | 
    
         
            -
             
     | 
| 
       1224 
     | 
    
         
            -
             
     | 
| 
       1225 
     | 
    
         
            -
             
     | 
| 
       1226 
     | 
    
         
            -
             
     | 
| 
       1227 
     | 
    
         
            -
             
     | 
| 
       1228 
     | 
    
         
            -
             
     | 
| 
       1229 
     | 
    
         
            -
             
     | 
| 
       1230 
     | 
    
         
            -
             
     | 
| 
       1231 
     | 
    
         
            -
                             
     | 
| 
       1232 
     | 
    
         
            -
             
     | 
| 
       1233 
     | 
    
         
            -
             
     | 
| 
       1234 
     | 
    
         
            -
             
     | 
| 
       1235 
     | 
    
         
            -
             
     | 
| 
       1236 
     | 
    
         
            -
             
     | 
| 
       1237 
     | 
    
         
            -
                                     
     | 
| 
       1238 
     | 
    
         
            -
                                     
     | 
| 
       1239 
     | 
    
         
            -
                                     
     | 
| 
       1240 
     | 
    
         
            -
                                     
     | 
| 
       1241 
     | 
    
         
            -
             
     | 
| 
       1242 
     | 
    
         
            -
             
     | 
| 
       1243 
     | 
    
         
            -
             
     | 
| 
       1244 
     | 
    
         
            -
             
     | 
| 
       1245 
     | 
    
         
            -
             
     | 
| 
       1246 
     | 
    
         
            -
                             
     | 
| 
       1247 
     | 
    
         
            -
             
     | 
| 
       1248 
     | 
    
         
            -
             
     | 
| 
       1249 
     | 
    
         
            -
             
     | 
| 
       1250 
     | 
    
         
            -
                             
     | 
| 
       1251 
     | 
    
         
            -
             
     | 
| 
       1252 
     | 
    
         
            -
             
     | 
| 
       1253 
     | 
    
         
            -
             
     | 
| 
       1254 
     | 
    
         
            -
                             
     | 
| 
       1255 
     | 
    
         
            -
             
     | 
| 
       1256 
     | 
    
         
            -
             
     | 
| 
       1257 
     | 
    
         
            -
             
     | 
| 
       1258 
     | 
    
         
            -
                             
     | 
| 
       1259 
     | 
    
         
            -
             
     | 
| 
       1260 
     | 
    
         
            -
             
     | 
| 
       1261 
     | 
    
         
            -
             
     | 
| 
       1262 
     | 
    
         
            -
                             
     | 
| 
       1263 
     | 
    
         
            -
             
     | 
| 
       1264 
     | 
    
         
            -
             
     | 
| 
       1265 
     | 
    
         
            -
             
     | 
| 
       1266 
     | 
    
         
            -
             
     | 
| 
       1267 
     | 
    
         
            -
             
     | 
| 
       1268 
     | 
    
         
            -
                                     
     | 
| 
       1269 
     | 
    
         
            -
             
     | 
| 
       1270 
     | 
    
         
            -
             
     | 
| 
       1271 
     | 
    
         
            -
             
     | 
| 
       1272 
     | 
    
         
            -
             
     | 
| 
       1273 
     | 
    
         
            -
             
     | 
| 
       1274 
     | 
    
         
            -
                             
     | 
| 
       1275 
     | 
    
         
            -
             
     | 
| 
       1276 
     | 
    
         
            -
             
     | 
| 
       1277 
     | 
    
         
            -
             
     | 
| 
       1278 
     | 
    
         
            -
                             
     | 
| 
       1279 
     | 
    
         
            -
             
     | 
| 
       1280 
     | 
    
         
            -
             
     | 
| 
       1281 
     | 
    
         
            -
             
     | 
| 
       1282 
     | 
    
         
            -
             
     | 
| 
       1283 
     | 
    
         
            -
             
     | 
| 
       1284 
     | 
    
         
            -
                     
     | 
| 
       1285 
     | 
    
         
            -
             
     | 
| 
       1286 
     | 
    
         
            -
             
     | 
| 
       1287 
     | 
    
         
            -
             
     | 
| 
       1288 
     | 
    
         
            -
             
     | 
| 
       1289 
     | 
    
         
            -
                        (
         
     | 
| 
       1290 
     | 
    
         
            -
                            time( 
     | 
| 
       1291 
     | 
    
         
            -
                             
     | 
| 
       1292 
     | 
    
         
            -
                        ),
         
     | 
| 
       1293 
     | 
    
         
            -
                        (
         
     | 
| 
       1294 
     | 
    
         
            -
                            time( 
     | 
| 
       1295 
     | 
    
         
            -
                             
     | 
| 
       1296 
     | 
    
         
            -
                        ),
         
     | 
| 
       1297 
     | 
    
         
            -
             
     | 
| 
       1298 
     | 
    
         
            -
             
     | 
| 
       1299 
     | 
    
         
            -
             
     | 
| 
       1300 
     | 
    
         
            -
             
     | 
| 
       1301 
     | 
    
         
            -
                     
     | 
| 
       1302 
     | 
    
         
            -
             
     | 
| 
       1303 
     | 
    
         
            -
             
     | 
| 
       1304 
     | 
    
         
            -
             
     | 
| 
       1305 
     | 
    
         
            -
                     
     | 
| 
       1306 
     | 
    
         
            -
                     
     | 
| 
       1307 
     | 
    
         
            -
             
     | 
| 
       1308 
     | 
    
         
            -
                     
     | 
| 
       1309 
     | 
    
         
            -
                     
     | 
| 
       1310 
     | 
    
         
            -
                     
     | 
| 
       1311 
     | 
    
         
            -
                     
     | 
| 
       1312 
     | 
    
         
            -
                     
     | 
| 
       1313 
     | 
    
         
            -
             
     | 
| 
       1314 
     | 
    
         
            -
                     
     | 
| 
       1315 
     | 
    
         
            -
                     
     | 
| 
       1316 
     | 
    
         
            -
             
     | 
| 
       1317 
     | 
    
         
            -
             
     | 
| 
       1318 
     | 
    
         
            -
             
     | 
| 
       1319 
     | 
    
         
            -
             
     | 
| 
       1320 
     | 
    
         
            -
             
     | 
| 
       1321 
     | 
    
         
            -
                     
     | 
| 
       1322 
     | 
    
         
            -
                         
     | 
| 
       1323 
     | 
    
         
            -
             
     | 
| 
       1324 
     | 
    
         
            -
                    #  
     | 
| 
       1325 
     | 
    
         
            -
                    if  
     | 
| 
       1326 
     | 
    
         
            -
                        return  
     | 
| 
       1327 
     | 
    
         
            -
             
     | 
| 
       1328 
     | 
    
         
            -
             
     | 
| 
       1329 
     | 
    
         
            -
             
     | 
| 
       1330 
     | 
    
         
            -
             
     | 
| 
       1331 
     | 
    
         
            -
                             
     | 
| 
       1332 
     | 
    
         
            -
             
     | 
| 
       1333 
     | 
    
         
            -
             
     | 
| 
       1334 
     | 
    
         
            -
             
     | 
| 
       1335 
     | 
    
         
            -
             
     | 
| 
       1336 
     | 
    
         
            -
                         
     | 
| 
       1337 
     | 
    
         
            -
             
     | 
| 
       1338 
     | 
    
         
            -
             
     | 
| 
       1339 
     | 
    
         
            -
             
     | 
| 
       1340 
     | 
    
         
            -
                         
     | 
| 
       1341 
     | 
    
         
            -
             
     | 
| 
       1342 
     | 
    
         
            -
             
     | 
| 
       1343 
     | 
    
         
            -
             
     | 
| 
       1344 
     | 
    
         
            -
             
     | 
| 
       1345 
     | 
    
         
            -
             
     | 
| 
       1346 
     | 
    
         
            -
                     
     | 
| 
       1347 
     | 
    
         
            -
             
     | 
| 
       1348 
     | 
    
         
            -
             
     | 
| 
       1349 
     | 
    
         
            -
             
     | 
| 
       1350 
     | 
    
         
            -
             
     | 
| 
       1351 
     | 
    
         
            -
             
     | 
| 
       1352 
     | 
    
         
            -
             
     | 
| 
       1353 
     | 
    
         
            -
                         
     | 
| 
       1354 
     | 
    
         
            -
                        days = days. 
     | 
| 
       1355 
     | 
    
         
            -
             
     | 
| 
       1356 
     | 
    
         
            -
             
     | 
| 
       1357 
     | 
    
         
            -
             
     | 
| 
       1358 
     | 
    
         
            -
             
     | 
| 
       1359 
     | 
    
         
            -
                     
     | 
| 
       1360 
     | 
    
         
            -
             
     | 
| 
       1361 
     | 
    
         
            -
             
     | 
| 
       1362 
     | 
    
         
            -
                     
     | 
| 
       1363 
     | 
    
         
            -
                     
     | 
| 
       1364 
     | 
    
         
            -
                     
     | 
| 
       1365 
     | 
    
         
            -
                     
     | 
| 
       1366 
     | 
    
         
            -
                     
     | 
| 
       1367 
     | 
    
         
            -
             
     | 
| 
       1368 
     | 
    
         
            -
                     
     | 
| 
       1369 
     | 
    
         
            -
             
     | 
| 
       1370 
     | 
    
         
            -
                     
     | 
| 
       1371 
     | 
    
         
            -
             
     | 
| 
       1372 
     | 
    
         
            -
                     
     | 
| 
       1373 
     | 
    
         
            -
             
     | 
| 
       1374 
     | 
    
         
            -
             
     | 
| 
       1375 
     | 
    
         
            -
             
     | 
| 
       1376 
     | 
    
         
            -
             
     | 
| 
       1377 
     | 
    
         
            -
                        " 
     | 
| 
       1378 
     | 
    
         
            -
                        " 
     | 
| 
       1379 
     | 
    
         
            -
                        " 
     | 
| 
       1380 
     | 
    
         
            -
             
     | 
| 
       1381 
     | 
    
         
            -
             
     | 
| 
       1382 
     | 
    
         
            -
             
     | 
| 
       1383 
     | 
    
         
            -
             
     | 
| 
       1384 
     | 
    
         
            -
                     
     | 
| 
       1385 
     | 
    
         
            -
             
     | 
| 
       1386 
     | 
    
         
            -
             
     | 
| 
       1387 
     | 
    
         
            -
             
     | 
| 
       1388 
     | 
    
         
            -
                    #  
     | 
| 
       1389 
     | 
    
         
            -
                    if start is not None and  
     | 
| 
       1390 
     | 
    
         
            -
                         
     | 
| 
       1391 
     | 
    
         
            -
             
     | 
| 
       1392 
     | 
    
         
            -
             
     | 
| 
       1393 
     | 
    
         
            -
             
     | 
| 
       1394 
     | 
    
         
            -
             
     | 
| 
       1395 
     | 
    
         
            -
                            #  
     | 
| 
       1396 
     | 
    
         
            -
             
     | 
| 
       1397 
     | 
    
         
            -
             
     | 
| 
       1398 
     | 
    
         
            -
                            #  
     | 
| 
       1399 
     | 
    
         
            -
             
     | 
| 
       1400 
     | 
    
         
            -
             
     | 
| 
       1401 
     | 
    
         
            -
                            )
         
     | 
| 
       1402 
     | 
    
         
            -
             
     | 
| 
       1403 
     | 
    
         
            -
             
     | 
| 
       1404 
     | 
    
         
            -
             
     | 
| 
       1405 
     | 
    
         
            -
             
     | 
| 
       1406 
     | 
    
         
            -
             
     | 
| 
       1407 
     | 
    
         
            -
             
     | 
| 
       1408 
     | 
    
         
            -
             
     | 
| 
       1409 
     | 
    
         
            -
             
     | 
| 
       1410 
     | 
    
         
            -
                         
     | 
| 
       1411 
     | 
    
         
            -
                         
     | 
| 
       1412 
     | 
    
         
            -
             
     | 
| 
       1413 
     | 
    
         
            -
             
     | 
| 
       1414 
     | 
    
         
            -
             
     | 
| 
       1415 
     | 
    
         
            -
                         
     | 
| 
       1416 
     | 
    
         
            -
                        post = 
     | 
| 
       1417 
     | 
    
         
            -
             
     | 
| 
       1418 
     | 
    
         
            -
             
     | 
| 
       1419 
     | 
    
         
            -
             
     | 
| 
       1420 
     | 
    
         
            -
                         
     | 
| 
       1421 
     | 
    
         
            -
             
     | 
| 
       1422 
     | 
    
         
            -
             
     | 
| 
       1423 
     | 
    
         
            -
             
     | 
| 
       1424 
     | 
    
         
            -
             
     | 
| 
       1425 
     | 
    
         
            -
             
     | 
| 
       1426 
     | 
    
         
            -
                             
     | 
| 
       1427 
     | 
    
         
            -
             
     | 
| 
       1428 
     | 
    
         
            -
             
     | 
| 
       1429 
     | 
    
         
            -
             
     | 
| 
       1430 
     | 
    
         
            -
                             
     | 
| 
       1431 
     | 
    
         
            -
             
     | 
| 
       1432 
     | 
    
         
            -
             
     | 
| 
       1433 
     | 
    
         
            -
             
     | 
| 
       1434 
     | 
    
         
            -
             
     | 
| 
       1435 
     | 
    
         
            -
             
     | 
| 
       1436 
     | 
    
         
            -
             
     | 
| 
       1437 
     | 
    
         
            -
                                 
     | 
| 
       1438 
     | 
    
         
            -
                                 
     | 
| 
       1439 
     | 
    
         
            -
             
     | 
| 
       1440 
     | 
    
         
            -
             
     | 
| 
       1441 
     | 
    
         
            -
                                 
     | 
| 
       1442 
     | 
    
         
            -
                                 
     | 
| 
       1443 
     | 
    
         
            -
                             
     | 
| 
       1444 
     | 
    
         
            -
             
     | 
| 
       1445 
     | 
    
         
            -
             
     | 
| 
       1446 
     | 
    
         
            -
             
     | 
| 
       1447 
     | 
    
         
            -
             
     | 
| 
       1448 
     | 
    
         
            -
             
     | 
| 
       1449 
     | 
    
         
            -
             
     | 
| 
       1450 
     | 
    
         
            -
             
     | 
| 
       1451 
     | 
    
         
            -
             
     | 
| 
       1452 
     | 
    
         
            -
             
     | 
| 
       1453 
     | 
    
         
            -
             
     | 
| 
       1454 
     | 
    
         
            -
             
     | 
| 
       1455 
     | 
    
         
            -
                     
     | 
| 
       1456 
     | 
    
         
            -
                     
     | 
| 
       1457 
     | 
    
         
            -
             
     | 
| 
       1458 
     | 
    
         
            -
             
     | 
| 
       1459 
     | 
    
         
            -
                     
     | 
| 
       1460 
     | 
    
         
            -
                     
     | 
| 
       1461 
     | 
    
         
            -
                     
     | 
| 
       1462 
     | 
    
         
            -
             
     | 
| 
       1463 
     | 
    
         
            -
                    # make sure saturdays are not considered early closes if they are >= 12pm
         
     | 
| 
       1464 
     | 
    
         
            -
                    mc = early.market_close.dt.tz_convert(self.tz)
         
     | 
| 
       1465 
     | 
    
         
            -
                    after_noon = (mc - mc.dt.normalize()).ge(self._tdelta(self._saturday_close))
         
     | 
| 
       1466 
     | 
    
         
            -
                    return early[~(mc.dt.weekday.eq(5) & after_noon)]
         
     | 
| 
      
 1 
     | 
    
         
            +
            #
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Copyright 2016 Quantopian, Inc.
         
     | 
| 
      
 3 
     | 
    
         
            +
            #
         
     | 
| 
      
 4 
     | 
    
         
            +
            # Licensed under the Apache License, Version 2.0 (the "License");
         
     | 
| 
      
 5 
     | 
    
         
            +
            # you may not use this file except in compliance with the License.
         
     | 
| 
      
 6 
     | 
    
         
            +
            # You may obtain a copy of the License at
         
     | 
| 
      
 7 
     | 
    
         
            +
            #
         
     | 
| 
      
 8 
     | 
    
         
            +
            #     http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
      
 9 
     | 
    
         
            +
            #
         
     | 
| 
      
 10 
     | 
    
         
            +
            # Unless required by applicable law or agreed to in writing, software
         
     | 
| 
      
 11 
     | 
    
         
            +
            # distributed under the License is distributed on an "AS IS" BASIS,
         
     | 
| 
      
 12 
     | 
    
         
            +
            # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
         
     | 
| 
      
 13 
     | 
    
         
            +
            # See the License for the specific language governing permissions and
         
     | 
| 
      
 14 
     | 
    
         
            +
            # limitations under the License.
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            from datetime import time
         
     | 
| 
      
 17 
     | 
    
         
            +
            from itertools import chain
         
     | 
| 
      
 18 
     | 
    
         
            +
            from typing import Literal, Union
         
     | 
| 
      
 19 
     | 
    
         
            +
            import sys
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            # check python versiOn aNd import accordingly
         
     | 
| 
      
 22 
     | 
    
         
            +
            if sys.version_info >= (3, 9):
         
     | 
| 
      
 23 
     | 
    
         
            +
                # For Python 3.9 and later, import directly
         
     | 
| 
      
 24 
     | 
    
         
            +
                from zoneinfo import ZoneInfo
         
     | 
| 
      
 25 
     | 
    
         
            +
            else:
         
     | 
| 
      
 26 
     | 
    
         
            +
                # For Python 3.8 and earlier, import from backports
         
     | 
| 
      
 27 
     | 
    
         
            +
                from backports.zoneinfo import ZoneInfo
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            import pandas as pd
         
     | 
| 
      
 30 
     | 
    
         
            +
            from pandas.tseries.holiday import AbstractHolidayCalendar
         
     | 
| 
      
 31 
     | 
    
         
            +
            from pandas.tseries.offsets import CustomBusinessDay
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            from pandas_market_calendars import calendar_utils as u
         
     | 
| 
      
 34 
     | 
    
         
            +
            from pandas_market_calendars.holidays.nyse import (
         
     | 
| 
      
 35 
     | 
    
         
            +
                # Always Celebrated Holidays
         
     | 
| 
      
 36 
     | 
    
         
            +
                USNewYearsDayNYSEpost1952,
         
     | 
| 
      
 37 
     | 
    
         
            +
                USNewYearsDayNYSEpre1952,
         
     | 
| 
      
 38 
     | 
    
         
            +
                SatBeforeNewYearsAdhoc,
         
     | 
| 
      
 39 
     | 
    
         
            +
                USPresidentsDay,
         
     | 
| 
      
 40 
     | 
    
         
            +
                USWashingtonsBirthDay1964to1970,
         
     | 
| 
      
 41 
     | 
    
         
            +
                USWashingtonsBirthDayBefore1952,
         
     | 
| 
      
 42 
     | 
    
         
            +
                USWashingtonsBirthDay1952to1963,
         
     | 
| 
      
 43 
     | 
    
         
            +
                USLincolnsBirthDayBefore1954,
         
     | 
| 
      
 44 
     | 
    
         
            +
                LincolnsBirthDayAdhoc,
         
     | 
| 
      
 45 
     | 
    
         
            +
                SatBeforeWashingtonsBirthdayAdhoc,
         
     | 
| 
      
 46 
     | 
    
         
            +
                SatAfterWashingtonsBirthdayAdhoc,
         
     | 
| 
      
 47 
     | 
    
         
            +
                SatBeforeAfterLincolnsBirthdayAdhoc,
         
     | 
| 
      
 48 
     | 
    
         
            +
                GrantsBirthDayAdhoc,
         
     | 
| 
      
 49 
     | 
    
         
            +
                USMartinLutherKingJrAfter1998,
         
     | 
| 
      
 50 
     | 
    
         
            +
                GoodFriday,
         
     | 
| 
      
 51 
     | 
    
         
            +
                GoodFridayPre1898,
         
     | 
| 
      
 52 
     | 
    
         
            +
                GoodFriday1899to1905,
         
     | 
| 
      
 53 
     | 
    
         
            +
                SatAfterGoodFridayAdhoc,
         
     | 
| 
      
 54 
     | 
    
         
            +
                USMemorialDay,
         
     | 
| 
      
 55 
     | 
    
         
            +
                USMemorialDayBefore1952,
         
     | 
| 
      
 56 
     | 
    
         
            +
                USMemorialDay1952to1964,
         
     | 
| 
      
 57 
     | 
    
         
            +
                USMemorialDay1964to1969,
         
     | 
| 
      
 58 
     | 
    
         
            +
                SatBeforeDecorationAdhoc,
         
     | 
| 
      
 59 
     | 
    
         
            +
                SatAfterDecorationAdhoc,
         
     | 
| 
      
 60 
     | 
    
         
            +
                DayBeforeDecorationAdhoc,
         
     | 
| 
      
 61 
     | 
    
         
            +
                USJuneteenthAfter2022,
         
     | 
| 
      
 62 
     | 
    
         
            +
                USIndependenceDay,
         
     | 
| 
      
 63 
     | 
    
         
            +
                USIndependenceDayPre1952,
         
     | 
| 
      
 64 
     | 
    
         
            +
                USIndependenceDay1952to1954,
         
     | 
| 
      
 65 
     | 
    
         
            +
                SatBeforeIndependenceDayAdhoc,
         
     | 
| 
      
 66 
     | 
    
         
            +
                SatAfterIndependenceDayAdhoc,
         
     | 
| 
      
 67 
     | 
    
         
            +
                MonTuesThursBeforeIndependenceDay,
         
     | 
| 
      
 68 
     | 
    
         
            +
                FridayAfterIndependenceDayNYSEpre2013,
         
     | 
| 
      
 69 
     | 
    
         
            +
                WednesdayBeforeIndependenceDayPost2013,
         
     | 
| 
      
 70 
     | 
    
         
            +
                MonBeforeIndependenceDayAdhoc,
         
     | 
| 
      
 71 
     | 
    
         
            +
                DaysAfterIndependenceDayAdhoc,
         
     | 
| 
      
 72 
     | 
    
         
            +
                # DaysBeforeIndependenceDay1pmEarlyCloseAdhoc,
         
     | 
| 
      
 73 
     | 
    
         
            +
                USColumbusDayBefore1954,
         
     | 
| 
      
 74 
     | 
    
         
            +
                USElectionDay1848to1967,
         
     | 
| 
      
 75 
     | 
    
         
            +
                USLaborDayStarting1887,
         
     | 
| 
      
 76 
     | 
    
         
            +
                SatBeforeLaborDayAdhoc,
         
     | 
| 
      
 77 
     | 
    
         
            +
                USThanksgivingDay,
         
     | 
| 
      
 78 
     | 
    
         
            +
                USThanksgivingDay1939to1941,
         
     | 
| 
      
 79 
     | 
    
         
            +
                USThanksgivingDayBefore1939,
         
     | 
| 
      
 80 
     | 
    
         
            +
                DayAfterThanksgiving2pmEarlyCloseBefore1993,
         
     | 
| 
      
 81 
     | 
    
         
            +
                DayAfterThanksgiving1pmEarlyCloseInOrAfter1993,
         
     | 
| 
      
 82 
     | 
    
         
            +
                FridayAfterThanksgivingAdHoc,
         
     | 
| 
      
 83 
     | 
    
         
            +
                USElectionDay1968to1980Adhoc,
         
     | 
| 
      
 84 
     | 
    
         
            +
                ChristmasNYSE,
         
     | 
| 
      
 85 
     | 
    
         
            +
                Christmas54to98NYSE,
         
     | 
| 
      
 86 
     | 
    
         
            +
                ChristmasBefore1954,
         
     | 
| 
      
 87 
     | 
    
         
            +
                ChristmasEvesAdhoc,
         
     | 
| 
      
 88 
     | 
    
         
            +
                DayAfterChristmasAdhoc,
         
     | 
| 
      
 89 
     | 
    
         
            +
                DayAfterChristmas1pmEarlyCloseAdhoc,
         
     | 
| 
      
 90 
     | 
    
         
            +
                ChristmasEvePost1999Early1pmClose,
         
     | 
| 
      
 91 
     | 
    
         
            +
                ChristmasEve1pmEarlyCloseAdhoc,
         
     | 
| 
      
 92 
     | 
    
         
            +
                ChristmasEve2pmEarlyCloseAdhoc,
         
     | 
| 
      
 93 
     | 
    
         
            +
                SatBeforeChristmasAdhoc,
         
     | 
| 
      
 94 
     | 
    
         
            +
                SatAfterChristmasAdhoc,
         
     | 
| 
      
 95 
     | 
    
         
            +
                # Retired Holidays
         
     | 
| 
      
 96 
     | 
    
         
            +
                USVetransDayAdHoc,
         
     | 
| 
      
 97 
     | 
    
         
            +
                SatAfterColumbusDayAdHoc,
         
     | 
| 
      
 98 
     | 
    
         
            +
                USVeteransDay1934to1953,
         
     | 
| 
      
 99 
     | 
    
         
            +
                # Adhoc Holidays
         
     | 
| 
      
 100 
     | 
    
         
            +
                # 1885
         
     | 
| 
      
 101 
     | 
    
         
            +
                UlyssesGrantFuneral1885,
         
     | 
| 
      
 102 
     | 
    
         
            +
                # 1892
         
     | 
| 
      
 103 
     | 
    
         
            +
                ColumbianCelebration1892,
         
     | 
| 
      
 104 
     | 
    
         
            +
                # 1888
         
     | 
| 
      
 105 
     | 
    
         
            +
                GreatBlizzardOf1888,
         
     | 
| 
      
 106 
     | 
    
         
            +
                # 1889
         
     | 
| 
      
 107 
     | 
    
         
            +
                WashingtonInaugurationCentennialCelebration1889,
         
     | 
| 
      
 108 
     | 
    
         
            +
                # 1898
         
     | 
| 
      
 109 
     | 
    
         
            +
                CharterDay1898,
         
     | 
| 
      
 110 
     | 
    
         
            +
                WelcomeNavalCommander1898,
         
     | 
| 
      
 111 
     | 
    
         
            +
                # 1899
         
     | 
| 
      
 112 
     | 
    
         
            +
                AdmiralDeweyCelebration1899,
         
     | 
| 
      
 113 
     | 
    
         
            +
                GarretHobartFuneral1899,
         
     | 
| 
      
 114 
     | 
    
         
            +
                # 1901
         
     | 
| 
      
 115 
     | 
    
         
            +
                McKinleyDeathAndFuneral1901,
         
     | 
| 
      
 116 
     | 
    
         
            +
                QueenVictoriaFuneral1901,
         
     | 
| 
      
 117 
     | 
    
         
            +
                MovedToProduceExchange1901,
         
     | 
| 
      
 118 
     | 
    
         
            +
                EnlargedProduceExchange1901,
         
     | 
| 
      
 119 
     | 
    
         
            +
                # 1902
         
     | 
| 
      
 120 
     | 
    
         
            +
                KingEdwardVIIcoronation1902,
         
     | 
| 
      
 121 
     | 
    
         
            +
                # 1903
         
     | 
| 
      
 122 
     | 
    
         
            +
                NYSEnewBuildingOpen1903,
         
     | 
| 
      
 123 
     | 
    
         
            +
                # 1908
         
     | 
| 
      
 124 
     | 
    
         
            +
                GroverClevelandFuneral1pmClose1908,
         
     | 
| 
      
 125 
     | 
    
         
            +
                # 1909
         
     | 
| 
      
 126 
     | 
    
         
            +
                HudsonFultonCelebration1909,
         
     | 
| 
      
 127 
     | 
    
         
            +
                # 1910
         
     | 
| 
      
 128 
     | 
    
         
            +
                KingEdwardDeath11amyClose1910,
         
     | 
| 
      
 129 
     | 
    
         
            +
                KingEdwardFuneral12pmOpen1910,
         
     | 
| 
      
 130 
     | 
    
         
            +
                # 1912
         
     | 
| 
      
 131 
     | 
    
         
            +
                JamesShermanFuneral1912,
         
     | 
| 
      
 132 
     | 
    
         
            +
                # 1913
         
     | 
| 
      
 133 
     | 
    
         
            +
                JPMorganFuneral12pmOpen1913,
         
     | 
| 
      
 134 
     | 
    
         
            +
                WilliamGaynorFuneral12pmOpen1913,
         
     | 
| 
      
 135 
     | 
    
         
            +
                # 1914
         
     | 
| 
      
 136 
     | 
    
         
            +
                OnsetOfWWI1914,
         
     | 
| 
      
 137 
     | 
    
         
            +
                # 1917
         
     | 
| 
      
 138 
     | 
    
         
            +
                WeatherHeatClosing1917,
         
     | 
| 
      
 139 
     | 
    
         
            +
                ParadeOfNationalGuardEarlyClose1917,
         
     | 
| 
      
 140 
     | 
    
         
            +
                LibertyDay12pmEarlyClose1917,
         
     | 
| 
      
 141 
     | 
    
         
            +
                DraftRegistrationDay1917,
         
     | 
| 
      
 142 
     | 
    
         
            +
                # 1918
         
     | 
| 
      
 143 
     | 
    
         
            +
                WeatherNoHeatClosing1918,
         
     | 
| 
      
 144 
     | 
    
         
            +
                DraftRegistrationDay1918,
         
     | 
| 
      
 145 
     | 
    
         
            +
                LibertyDay12pmEarlyClose1918,
         
     | 
| 
      
 146 
     | 
    
         
            +
                FalseArmisticeReport1430EarlyClose1918,
         
     | 
| 
      
 147 
     | 
    
         
            +
                ArmisticeSigned1918,
         
     | 
| 
      
 148 
     | 
    
         
            +
                # 1919
         
     | 
| 
      
 149 
     | 
    
         
            +
                RooseveltFuneral1230EarlyClose1919,
         
     | 
| 
      
 150 
     | 
    
         
            +
                Homecoming27Division1919,
         
     | 
| 
      
 151 
     | 
    
         
            +
                ParadeOf77thDivision1919,
         
     | 
| 
      
 152 
     | 
    
         
            +
                BacklogRelief1919,
         
     | 
| 
      
 153 
     | 
    
         
            +
                GeneralPershingReturn1919,
         
     | 
| 
      
 154 
     | 
    
         
            +
                TrafficBlockLateOpen1919,
         
     | 
| 
      
 155 
     | 
    
         
            +
                # 1920
         
     | 
| 
      
 156 
     | 
    
         
            +
                TrafficBlockLateOpen1920,
         
     | 
| 
      
 157 
     | 
    
         
            +
                OfficeLocationChange1920,
         
     | 
| 
      
 158 
     | 
    
         
            +
                WallStreetExplosionEarlyClose1920,
         
     | 
| 
      
 159 
     | 
    
         
            +
                # 1921
         
     | 
| 
      
 160 
     | 
    
         
            +
                AnnunciatorBoardFire1pmLateOpen1921,
         
     | 
| 
      
 161 
     | 
    
         
            +
                # 1923
         
     | 
| 
      
 162 
     | 
    
         
            +
                HardingDeath1923,
         
     | 
| 
      
 163 
     | 
    
         
            +
                HardingFuneral1923,
         
     | 
| 
      
 164 
     | 
    
         
            +
                # 1924
         
     | 
| 
      
 165 
     | 
    
         
            +
                WoodrowWilsonFuneral1230EarlyClose1924,
         
     | 
| 
      
 166 
     | 
    
         
            +
                # 1925
         
     | 
| 
      
 167 
     | 
    
         
            +
                EclipseOfSunLateOpen1925,
         
     | 
| 
      
 168 
     | 
    
         
            +
                CromwellFuneral1430EarlyClose1925,
         
     | 
| 
      
 169 
     | 
    
         
            +
                # 1927
         
     | 
| 
      
 170 
     | 
    
         
            +
                LindberghParade1927,
         
     | 
| 
      
 171 
     | 
    
         
            +
                # 1928
         
     | 
| 
      
 172 
     | 
    
         
            +
                BacklogRelief1928,
         
     | 
| 
      
 173 
     | 
    
         
            +
                BacklogRelief2pmEarlyClose1928,
         
     | 
| 
      
 174 
     | 
    
         
            +
                # 1929
         
     | 
| 
      
 175 
     | 
    
         
            +
                BacklogRelief1929,
         
     | 
| 
      
 176 
     | 
    
         
            +
                BacklogRelief1pmEarlyClose1929,
         
     | 
| 
      
 177 
     | 
    
         
            +
                BacklogRelief12pmLateOpen1929,
         
     | 
| 
      
 178 
     | 
    
         
            +
                # 1930
         
     | 
| 
      
 179 
     | 
    
         
            +
                TaftFuneral1230EarlyClose1930,
         
     | 
| 
      
 180 
     | 
    
         
            +
                # 1933
         
     | 
| 
      
 181 
     | 
    
         
            +
                CoolidgeFuneral1933,
         
     | 
| 
      
 182 
     | 
    
         
            +
                BankHolidays1933,
         
     | 
| 
      
 183 
     | 
    
         
            +
                GasFumesOnTradingFloor1230EarlyClose1933,
         
     | 
| 
      
 184 
     | 
    
         
            +
                HeavyVolume1933,
         
     | 
| 
      
 185 
     | 
    
         
            +
                HeavyVolume12pmLateOpen1933,
         
     | 
| 
      
 186 
     | 
    
         
            +
                HeavyVolume11amLateOpen1933,
         
     | 
| 
      
 187 
     | 
    
         
            +
                HeavyVolume2pmEarlyClose1933,
         
     | 
| 
      
 188 
     | 
    
         
            +
                NRAdemonstration12pmEarlyClose1933,
         
     | 
| 
      
 189 
     | 
    
         
            +
                # 1924
         
     | 
| 
      
 190 
     | 
    
         
            +
                Snow11amLateOpen1934,
         
     | 
| 
      
 191 
     | 
    
         
            +
                # 1936
         
     | 
| 
      
 192 
     | 
    
         
            +
                KingGeorgeVFuneral11amLateOpen1936,
         
     | 
| 
      
 193 
     | 
    
         
            +
                # 1944
         
     | 
| 
      
 194 
     | 
    
         
            +
                SatClosings1944,
         
     | 
| 
      
 195 
     | 
    
         
            +
                # 1945
         
     | 
| 
      
 196 
     | 
    
         
            +
                RooseveltDayOfMourning1945,
         
     | 
| 
      
 197 
     | 
    
         
            +
                SatClosings1945,
         
     | 
| 
      
 198 
     | 
    
         
            +
                VJday1945,
         
     | 
| 
      
 199 
     | 
    
         
            +
                NavyDay1945,
         
     | 
| 
      
 200 
     | 
    
         
            +
                # 1946
         
     | 
| 
      
 201 
     | 
    
         
            +
                RailroadStrike1946,
         
     | 
| 
      
 202 
     | 
    
         
            +
                SatClosings1946,
         
     | 
| 
      
 203 
     | 
    
         
            +
                # 1947
         
     | 
| 
      
 204 
     | 
    
         
            +
                SatClosings1947,
         
     | 
| 
      
 205 
     | 
    
         
            +
                # 1948
         
     | 
| 
      
 206 
     | 
    
         
            +
                SatClosings1948,
         
     | 
| 
      
 207 
     | 
    
         
            +
                SevereWeather1948,
         
     | 
| 
      
 208 
     | 
    
         
            +
                # 1949
         
     | 
| 
      
 209 
     | 
    
         
            +
                SatClosings1949,
         
     | 
| 
      
 210 
     | 
    
         
            +
                # 1950
         
     | 
| 
      
 211 
     | 
    
         
            +
                SatClosings1950,
         
     | 
| 
      
 212 
     | 
    
         
            +
                # 1951
         
     | 
| 
      
 213 
     | 
    
         
            +
                SatClosings1951,
         
     | 
| 
      
 214 
     | 
    
         
            +
                # 1952
         
     | 
| 
      
 215 
     | 
    
         
            +
                SatClosings1952,
         
     | 
| 
      
 216 
     | 
    
         
            +
                # 1960
         
     | 
| 
      
 217 
     | 
    
         
            +
                Snow11amLateOpening1960,
         
     | 
| 
      
 218 
     | 
    
         
            +
                # 1963
         
     | 
| 
      
 219 
     | 
    
         
            +
                KennedyAssassination1407EarlyClose,
         
     | 
| 
      
 220 
     | 
    
         
            +
                KennedyFuneral1963,
         
     | 
| 
      
 221 
     | 
    
         
            +
                # 1964
         
     | 
| 
      
 222 
     | 
    
         
            +
                HooverFuneral1400EarlyClose1964,
         
     | 
| 
      
 223 
     | 
    
         
            +
                # 1965
         
     | 
| 
      
 224 
     | 
    
         
            +
                PowerFail1105LateOpen,
         
     | 
| 
      
 225 
     | 
    
         
            +
                # 1966
         
     | 
| 
      
 226 
     | 
    
         
            +
                TransitStrike2pmEarlyClose1966,
         
     | 
| 
      
 227 
     | 
    
         
            +
                # 1967
         
     | 
| 
      
 228 
     | 
    
         
            +
                Snow1015LateOpen1967,
         
     | 
| 
      
 229 
     | 
    
         
            +
                Snow2pmEarlyClose1967,
         
     | 
| 
      
 230 
     | 
    
         
            +
                Backlog2pmEarlyCloses1967,
         
     | 
| 
      
 231 
     | 
    
         
            +
                # 1968
         
     | 
| 
      
 232 
     | 
    
         
            +
                Backlog2pmEarlyCloses1968,
         
     | 
| 
      
 233 
     | 
    
         
            +
                MLKdayOfMourning1968,
         
     | 
| 
      
 234 
     | 
    
         
            +
                PaperworkCrisis1968,
         
     | 
| 
      
 235 
     | 
    
         
            +
                # 1969 - 1970
         
     | 
| 
      
 236 
     | 
    
         
            +
                PaperworkCrisis2pmEarlyCloses1969,
         
     | 
| 
      
 237 
     | 
    
         
            +
                SnowClosing1969,
         
     | 
| 
      
 238 
     | 
    
         
            +
                Snow11amLateOpen1969,
         
     | 
| 
      
 239 
     | 
    
         
            +
                EisenhowerFuneral1969,
         
     | 
| 
      
 240 
     | 
    
         
            +
                Storm1045LateOpen1969,
         
     | 
| 
      
 241 
     | 
    
         
            +
                PaperworkCrisis230pmEarlyCloses1969,
         
     | 
| 
      
 242 
     | 
    
         
            +
                FirstLunarLandingClosing1969,
         
     | 
| 
      
 243 
     | 
    
         
            +
                PaperworkCrisis3pmEarlyCloses1969to1970,
         
     | 
| 
      
 244 
     | 
    
         
            +
                # 1972
         
     | 
| 
      
 245 
     | 
    
         
            +
                TrumanFuneral1972,
         
     | 
| 
      
 246 
     | 
    
         
            +
                # 1973
         
     | 
| 
      
 247 
     | 
    
         
            +
                JohnsonFuneral1973,
         
     | 
| 
      
 248 
     | 
    
         
            +
                Ice11amLateOpen1973,
         
     | 
| 
      
 249 
     | 
    
         
            +
                # 1974
         
     | 
| 
      
 250 
     | 
    
         
            +
                MerrillLynchComputer1015LateOpen1974,
         
     | 
| 
      
 251 
     | 
    
         
            +
                FireDrill1015LateOpen1974,
         
     | 
| 
      
 252 
     | 
    
         
            +
                # 1975
         
     | 
| 
      
 253 
     | 
    
         
            +
                Snow230EarlyClose1975,
         
     | 
| 
      
 254 
     | 
    
         
            +
                # 1976
         
     | 
| 
      
 255 
     | 
    
         
            +
                Storm1115LateOpen1976,
         
     | 
| 
      
 256 
     | 
    
         
            +
                FireDrill1015LateOpen1976,
         
     | 
| 
      
 257 
     | 
    
         
            +
                HurricaneWatch3pmEarlyClose1976,
         
     | 
| 
      
 258 
     | 
    
         
            +
                # 1977
         
     | 
| 
      
 259 
     | 
    
         
            +
                NewYorkCityBlackout77,
         
     | 
| 
      
 260 
     | 
    
         
            +
                # 1978
         
     | 
| 
      
 261 
     | 
    
         
            +
                Snow12pmLateOpen1978,
         
     | 
| 
      
 262 
     | 
    
         
            +
                Snow2pmEarlyClose1978,
         
     | 
| 
      
 263 
     | 
    
         
            +
                Snow11amLateOpen1978,
         
     | 
| 
      
 264 
     | 
    
         
            +
                # 1981
         
     | 
| 
      
 265 
     | 
    
         
            +
                ReaganAssassAttempt317pmEarlyClose1981,
         
     | 
| 
      
 266 
     | 
    
         
            +
                ConEdPowerFail328pmEarlyClose1981,
         
     | 
| 
      
 267 
     | 
    
         
            +
                # 1985
         
     | 
| 
      
 268 
     | 
    
         
            +
                HurricaneGloriaClosings1985,
         
     | 
| 
      
 269 
     | 
    
         
            +
                # 1987
         
     | 
| 
      
 270 
     | 
    
         
            +
                Backlog2pmEarlyCloses1987,
         
     | 
| 
      
 271 
     | 
    
         
            +
                Backlog230pmEarlyCloses1987,
         
     | 
| 
      
 272 
     | 
    
         
            +
                Backlog3pmEarlyCloses1987,
         
     | 
| 
      
 273 
     | 
    
         
            +
                Backlog330pmEarlyCloses1987,
         
     | 
| 
      
 274 
     | 
    
         
            +
                # 1989
         
     | 
| 
      
 275 
     | 
    
         
            +
                Fire11amLateOpen1989,
         
     | 
| 
      
 276 
     | 
    
         
            +
                # 1990
         
     | 
| 
      
 277 
     | 
    
         
            +
                ConEdXformer931amLateOpen1990,
         
     | 
| 
      
 278 
     | 
    
         
            +
                # 1991
         
     | 
| 
      
 279 
     | 
    
         
            +
                TroopsInGulf931LateOpens1991,
         
     | 
| 
      
 280 
     | 
    
         
            +
                # 1994
         
     | 
| 
      
 281 
     | 
    
         
            +
                Snow230pmEarlyClose1994,
         
     | 
| 
      
 282 
     | 
    
         
            +
                NixonFuneral1994,
         
     | 
| 
      
 283 
     | 
    
         
            +
                # 1995
         
     | 
| 
      
 284 
     | 
    
         
            +
                Computer1030LateOpen1995,
         
     | 
| 
      
 285 
     | 
    
         
            +
                # 1996
         
     | 
| 
      
 286 
     | 
    
         
            +
                Snow11amLateOpen1996,
         
     | 
| 
      
 287 
     | 
    
         
            +
                Snow2pmEarlyClose1996,
         
     | 
| 
      
 288 
     | 
    
         
            +
                # 1997
         
     | 
| 
      
 289 
     | 
    
         
            +
                CircuitBreakerTriggered330pmEarlyClose1997,
         
     | 
| 
      
 290 
     | 
    
         
            +
                # 2001
         
     | 
| 
      
 291 
     | 
    
         
            +
                September11Closings2001,
         
     | 
| 
      
 292 
     | 
    
         
            +
                Sept11MomentSilence933amLateOpen2001,
         
     | 
| 
      
 293 
     | 
    
         
            +
                EnduringFreedomMomentSilence931amLateOpen2001,
         
     | 
| 
      
 294 
     | 
    
         
            +
                # 2002
         
     | 
| 
      
 295 
     | 
    
         
            +
                Sept11Anniversary12pmLateOpen2002,
         
     | 
| 
      
 296 
     | 
    
         
            +
                # 2003
         
     | 
| 
      
 297 
     | 
    
         
            +
                IraqiFreedom932amLateOpen2003,
         
     | 
| 
      
 298 
     | 
    
         
            +
                # 2004
         
     | 
| 
      
 299 
     | 
    
         
            +
                ReaganMomentSilence932amLateOpen2004,
         
     | 
| 
      
 300 
     | 
    
         
            +
                ReaganMourning2004,
         
     | 
| 
      
 301 
     | 
    
         
            +
                # 2005
         
     | 
| 
      
 302 
     | 
    
         
            +
                SystemProb356pmEarlyClose2005,
         
     | 
| 
      
 303 
     | 
    
         
            +
                # 2006
         
     | 
| 
      
 304 
     | 
    
         
            +
                FordMomentSilence932amLateOpen2006,
         
     | 
| 
      
 305 
     | 
    
         
            +
                # 2007
         
     | 
| 
      
 306 
     | 
    
         
            +
                FordMourning2007,
         
     | 
| 
      
 307 
     | 
    
         
            +
                # 2012
         
     | 
| 
      
 308 
     | 
    
         
            +
                HurricaneSandyClosings2012,
         
     | 
| 
      
 309 
     | 
    
         
            +
                # 2018
         
     | 
| 
      
 310 
     | 
    
         
            +
                GeorgeHWBushDeath2018,
         
     | 
| 
      
 311 
     | 
    
         
            +
                # 2025
         
     | 
| 
      
 312 
     | 
    
         
            +
                JimmyCarterDeath2025,
         
     | 
| 
      
 313 
     | 
    
         
            +
            )
         
     | 
| 
      
 314 
     | 
    
         
            +
            from pandas_market_calendars.market_calendar import MarketCalendar
         
     | 
| 
      
 315 
     | 
    
         
            +
             
     | 
| 
      
 316 
     | 
    
         
            +
            # Useful resources for making changes to this file:
         
     | 
| 
      
 317 
     | 
    
         
            +
            # http://www.nyse.com/pdfs/closings.pdf
         
     | 
| 
      
 318 
     | 
    
         
            +
            # http://www.stevemorse.org/jcal/whendid.html
         
     | 
| 
      
 319 
     | 
    
         
            +
             
     | 
| 
      
 320 
     | 
    
         
            +
            # Overwrite the default holiday calendar start_date of 1/1/70
         
     | 
| 
      
 321 
     | 
    
         
            +
            AbstractHolidayCalendar.start_date = "1885-01-01"
         
     | 
| 
      
 322 
     | 
    
         
            +
             
     | 
| 
      
 323 
     | 
    
         
            +
             
     | 
| 
      
 324 
     | 
    
         
            +
            class NYSEExchangeCalendar(MarketCalendar):
         
     | 
| 
      
 325 
     | 
    
         
            +
                """
         
     | 
| 
      
 326 
     | 
    
         
            +
                Exchange calendar for NYSE from 1885-01-01
         
     | 
| 
      
 327 
     | 
    
         
            +
                    - Note: DJIA was first recorded 1885-02-16
         
     | 
| 
      
 328 
     | 
    
         
            +
             
     | 
| 
      
 329 
     | 
    
         
            +
                REFERENCES:
         
     | 
| 
      
 330 
     | 
    
         
            +
                - https://web.archive.org/web/20141224054812/http://www.nyse.com/about/history/timeline_trading.html
         
     | 
| 
      
 331 
     | 
    
         
            +
                - https://www.marketwatch.com/story/a-brief-history-of-trading-hours-on-wall-street-2015-05-29
         
     | 
| 
      
 332 
     | 
    
         
            +
                - http://www.ltadvisors.net/Info/research/closings.pdf
         
     | 
| 
      
 333 
     | 
    
         
            +
                - https://github.com/rsheftel/pandas_market_calendars/files/6827110/Stocks.NYSE-Closings.pdf
         
     | 
| 
      
 334 
     | 
    
         
            +
             
     | 
| 
      
 335 
     | 
    
         
            +
                NYSE OVERVIEW:
         
     | 
| 
      
 336 
     | 
    
         
            +
                - 1792: 5 securities traded
         
     | 
| 
      
 337 
     | 
    
         
            +
                - 1871: Continuous trading begins
         
     | 
| 
      
 338 
     | 
    
         
            +
                - 1885 to 1887: trading hours Mon-Sat 10am to variable 2pm thru 4pm (coded as 3pm)
         
     | 
| 
      
 339 
     | 
    
         
            +
                - 1887: trading hours Mon-Fri 10am-3pm Sat 10am-noon
         
     | 
| 
      
 340 
     | 
    
         
            +
                - 1952-09-29: trading hours Mon-Fri 10am-3:30pm,
         
     | 
| 
      
 341 
     | 
    
         
            +
                    - Sat trading removed after Sept 27
         
     | 
| 
      
 342 
     | 
    
         
            +
                    - Last effective Saturday traded was May 24, 1952
         
     | 
| 
      
 343 
     | 
    
         
            +
                - 1974: trading hours Mon-Fri 10am-4pm
         
     | 
| 
      
 344 
     | 
    
         
            +
                - 1985: trading hours Mon-Fri 9:30am-4pm
         
     | 
| 
      
 345 
     | 
    
         
            +
             
     | 
| 
      
 346 
     | 
    
         
            +
                #######################################
         
     | 
| 
      
 347 
     | 
    
         
            +
                Regularly-Observed Holidays as of 2021:
         
     | 
| 
      
 348 
     | 
    
         
            +
                #######################################
         
     | 
| 
      
 349 
     | 
    
         
            +
                - New Years Day (observed on monday when Jan 1 is a Sunday)
         
     | 
| 
      
 350 
     | 
    
         
            +
                - Martin Luther King Jr. Day (3rd Monday in January, only after 1998)
         
     | 
| 
      
 351 
     | 
    
         
            +
                - Lincoln's Birthday (February 12th, only before 1954 starting in 1896)
         
     | 
| 
      
 352 
     | 
    
         
            +
                - Washington's Birthday (February 22nd, before 1971 with rule change in 1964)
         
     | 
| 
      
 353 
     | 
    
         
            +
                - Washington's Birthday (aka President's Day, 3rd Monday in February, after 1970)
         
     | 
| 
      
 354 
     | 
    
         
            +
                - Good Friday (two days before Easter Sunday)
         
     | 
| 
      
 355 
     | 
    
         
            +
                - Memorial Day (May 30th, before 1970, with rule change in 1964)
         
     | 
| 
      
 356 
     | 
    
         
            +
                - Memorial Day (last Monday in May, after 1970)
         
     | 
| 
      
 357 
     | 
    
         
            +
                - Independence Day (July 4th Sunday to Monday, before 1954)
         
     | 
| 
      
 358 
     | 
    
         
            +
                - Independence Day (observed on the nearest weekday to July 4th, after 1953)
         
     | 
| 
      
 359 
     | 
    
         
            +
                - Election Day (First Tuesday starting on November 2nd, between 1848 and 1967)
         
     | 
| 
      
 360 
     | 
    
         
            +
                - Election Day (Every four years, first Tuesday starting on November 2nd, between 1968 and 1980)
         
     | 
| 
      
 361 
     | 
    
         
            +
                - Veterans Day (November 11th, between 1934 and 1953)
         
     | 
| 
      
 362 
     | 
    
         
            +
                - Columbus Day (October 12th, before 1954)
         
     | 
| 
      
 363 
     | 
    
         
            +
                - Labor Day (first Monday in September)
         
     | 
| 
      
 364 
     | 
    
         
            +
                - Thanksgiving (last Thursday in November, before 1939)
         
     | 
| 
      
 365 
     | 
    
         
            +
                - Thanksgiving (second to last Thursday in November, between 1939 and 1941)
         
     | 
| 
      
 366 
     | 
    
         
            +
                - Thanksgiving (fourth Thursday in November, after 1941)
         
     | 
| 
      
 367 
     | 
    
         
            +
                - Christmas (December 25th, Sunday to Monday, before 1954)
         
     | 
| 
      
 368 
     | 
    
         
            +
                - Christmas (observed on nearest weekday to December 25, after 1953)
         
     | 
| 
      
 369 
     | 
    
         
            +
             
     | 
| 
      
 370 
     | 
    
         
            +
                ################################
         
     | 
| 
      
 371 
     | 
    
         
            +
                Regularly-Observed Early Closes:
         
     | 
| 
      
 372 
     | 
    
         
            +
                ################################
         
     | 
| 
      
 373 
     | 
    
         
            +
                - July 3rd (Mondays, Tuesdays, and Thursdays, 1995 onward)
         
     | 
| 
      
 374 
     | 
    
         
            +
                - July 5th (Fridays, 1995 onward, except 2013)
         
     | 
| 
      
 375 
     | 
    
         
            +
                - Christmas Eve (except on Fridays, when the exchange is closed entirely)
         
     | 
| 
      
 376 
     | 
    
         
            +
                - Day After Thanksgiving (aka Black Friday, observed from 1992 onward)
         
     | 
| 
      
 377 
     | 
    
         
            +
             
     | 
| 
      
 378 
     | 
    
         
            +
                NOTE: Until 1993, the standard early close time for the NYSE was 2:00 PM.
         
     | 
| 
      
 379 
     | 
    
         
            +
                From 1993 onward, it has been 1:00 PM.
         
     | 
| 
      
 380 
     | 
    
         
            +
             
     | 
| 
      
 381 
     | 
    
         
            +
                ####################################
         
     | 
| 
      
 382 
     | 
    
         
            +
                Retired Regularly-Observed Holidays:
         
     | 
| 
      
 383 
     | 
    
         
            +
                ####################################
         
     | 
| 
      
 384 
     | 
    
         
            +
                - Columbus Day (after 1953)
         
     | 
| 
      
 385 
     | 
    
         
            +
                - Armistice/Veterans Day (after 1953)
         
     | 
| 
      
 386 
     | 
    
         
            +
             
     | 
| 
      
 387 
     | 
    
         
            +
                #################################
         
     | 
| 
      
 388 
     | 
    
         
            +
                Irregularities Openings/Closings:
         
     | 
| 
      
 389 
     | 
    
         
            +
                #################################
         
     | 
| 
      
 390 
     | 
    
         
            +
                begin reference: https://github.com/rsheftel/pandas_market_calendars/files/6827110/Stocks.NYSE-Closings.pdf
         
     | 
| 
      
 391 
     | 
    
         
            +
                - Closed on Aug 8, 1885 (Sat): President Ulysses S. Grant funeral
         
     | 
| 
      
 392 
     | 
    
         
            +
                - Closed on Jul 2, 1887 (Sat): Saturday before Independence Day
         
     | 
| 
      
 393 
     | 
    
         
            +
                - Closed on Dec 24, 1887 (Sat): Christmas Eve
         
     | 
| 
      
 394 
     | 
    
         
            +
                - Closed on Mar 12-13, 1888 (Mon-Tue): Blizzard of 1888
         
     | 
| 
      
 395 
     | 
    
         
            +
                - Closed on Sep 1, 1888 (Sat): Saturday before Labor Day
         
     | 
| 
      
 396 
     | 
    
         
            +
                - Closed on Nov 30, 1888 (Fri): Friday after Thanksgiving
         
     | 
| 
      
 397 
     | 
    
         
            +
                - Closed on Apr 29 - May 1, 1889 (Mon-Wed): Centennial celbration of Washington's inauguration
         
     | 
| 
      
 398 
     | 
    
         
            +
                - Closed on Jul 5, 1890 (Sat): Saturday after Independence Day
         
     | 
| 
      
 399 
     | 
    
         
            +
                - Closed on Dec 26, 1891 (Sat): Saturday after Christmas
         
     | 
| 
      
 400 
     | 
    
         
            +
                - Closed on Jul 2, 1892 (Sat): Saturday before Independence Day
         
     | 
| 
      
 401 
     | 
    
         
            +
                - Closed on Oct 12, 1892 (Wed) Columbian Celebration (Columbus discovery of America)
         
     | 
| 
      
 402 
     | 
    
         
            +
                - Closed on Oct 21-22, 1892 (Fri-Sat): Columbian Celebration
         
     | 
| 
      
 403 
     | 
    
         
            +
                - Closed on Apr 27, 1893 (Thu): Columbian Celebration
         
     | 
| 
      
 404 
     | 
    
         
            +
                - Closed on Dec 26, 1896 (Sat): Saturday after Christmas
         
     | 
| 
      
 405 
     | 
    
         
            +
                - Closed on Apr 27, 1897 (Tue): Grant's birthday
         
     | 
| 
      
 406 
     | 
    
         
            +
                - Closed on May 4, 1898 (Wed): NYC Charter Day
         
     | 
| 
      
 407 
     | 
    
         
            +
                - Closed on Jul 2, 1898 (Sat): Saturday before Independence Day
         
     | 
| 
      
 408 
     | 
    
         
            +
                - Closed on Aug 20, 1898 (Sat): Welcome of naval commanders
         
     | 
| 
      
 409 
     | 
    
         
            +
                - Closed on Sep 3, 1898 (Sat): Saturday before Labor Day
         
     | 
| 
      
 410 
     | 
    
         
            +
                - Closed on Dec 24, 1898 (Sat): Saturday before Christmas
         
     | 
| 
      
 411 
     | 
    
         
            +
                - Closed on Feb 11, 1899 (Sat): Saturday before Lincoln's birthday
         
     | 
| 
      
 412 
     | 
    
         
            +
                - Closed on May 29, 1899 (Mon): Monday before Decoration Day
         
     | 
| 
      
 413 
     | 
    
         
            +
                - Closed on Jul 3, 1899 (Mon): Monday before Independence Day
         
     | 
| 
      
 414 
     | 
    
         
            +
                - Closed on Sep 29-30, 1899 (Fri-Sat): Admiral Dewey Celebration
         
     | 
| 
      
 415 
     | 
    
         
            +
                - Closed on Nov 25, 1899 (Sat): Funeral of Vice-President Garret A. Hobart
         
     | 
| 
      
 416 
     | 
    
         
            +
                - Closed on Apr 14, 1900 (Sat): Saturday after Good Friday
         
     | 
| 
      
 417 
     | 
    
         
            +
                - Closed on Sep 1, 1900 (Sat): Saturday before Labor Day
         
     | 
| 
      
 418 
     | 
    
         
            +
                - Closed on Dec 24, 1900 (Mon): Christmas Eve
         
     | 
| 
      
 419 
     | 
    
         
            +
                - Closed on Feb 2, 1901 (Sat): Funderal of Queen Victoria of England
         
     | 
| 
      
 420 
     | 
    
         
            +
                - Closed on Feb 23, 1901 (Sat): Saturday after Washington's birthday
         
     | 
| 
      
 421 
     | 
    
         
            +
                - Closed on Apr 6, 1901 (Sat): Saturday after Good Friday
         
     | 
| 
      
 422 
     | 
    
         
            +
                - Closed on Apr 27, 1901 (Sat): Moved to temporary quarters in Produce Exchange
         
     | 
| 
      
 423 
     | 
    
         
            +
                - Closed on May 11, 1901 (Sat): Enlarged temporary quarters in Produce Exchange
         
     | 
| 
      
 424 
     | 
    
         
            +
                - Closed on Jul 5-6, 1901  (Fri-Sat): Days after Independence Day
         
     | 
| 
      
 425 
     | 
    
         
            +
                - Closed on Aug 31, 1901 (Sat): Saturday before Labor Day
         
     | 
| 
      
 426 
     | 
    
         
            +
                - Closed on Sep 14, 1901 (Sat): Death of President William McKinley
         
     | 
| 
      
 427 
     | 
    
         
            +
                - Closed on Sep 19, 1901 (Thu): Funeral of President William McKinley
         
     | 
| 
      
 428 
     | 
    
         
            +
                - Closed on Mar 29, 1902 (Sat): Saturday after Good Friday
         
     | 
| 
      
 429 
     | 
    
         
            +
                - Closed on May 31, 1902 (Sat): Saturday after Decoration Day
         
     | 
| 
      
 430 
     | 
    
         
            +
                - Closed on Jul 5, 1902 (Sat): Saturday after Independence Day
         
     | 
| 
      
 431 
     | 
    
         
            +
                - Closed on Aug 9, 1902 (Sat): Coronation of King Edward VII of England
         
     | 
| 
      
 432 
     | 
    
         
            +
                - Closed on Aug 30, 1902 (Sat): Saturday before Labor Day
         
     | 
| 
      
 433 
     | 
    
         
            +
                - Closed on Feb 21, 1903 (Sat): Saturday before Washington's birthday
         
     | 
| 
      
 434 
     | 
    
         
            +
                - Closed on Apr 11, 1903 (Sat): Saturday after Good Friday
         
     | 
| 
      
 435 
     | 
    
         
            +
                - Closed on Apr 22, 1903 (Wed): Opening of the new NYSE building
         
     | 
| 
      
 436 
     | 
    
         
            +
                - Closed on Sep 5, 1903 (Sat): Saturday before Labor Day
         
     | 
| 
      
 437 
     | 
    
         
            +
                - Closed on Dec 26, 1903 (Sat): Saturday after Christmas
         
     | 
| 
      
 438 
     | 
    
         
            +
                - Closed on May 28, 1904 (Sat): Saturday before Decoration Day
         
     | 
| 
      
 439 
     | 
    
         
            +
                - Closed on Jul 2, 1904 (Sat): Saturday before Independence Day
         
     | 
| 
      
 440 
     | 
    
         
            +
                - Closed on Sep 3, 1904 (Sat): Saturday before Labor Day
         
     | 
| 
      
 441 
     | 
    
         
            +
                - Closed on Dec 24, 1904 (Sat): Saturday before Christmas
         
     | 
| 
      
 442 
     | 
    
         
            +
                - Closed on Apr 22, 1905 (Sat): Saturday after Good Friday
         
     | 
| 
      
 443 
     | 
    
         
            +
                - Closed on Feb 23, 1907 (Sat): Saturday after Washington's birthday
         
     | 
| 
      
 444 
     | 
    
         
            +
                - Closed on Mar 30, 1907 (Sat): Saturday after Good Friday
         
     | 
| 
      
 445 
     | 
    
         
            +
                - Closed on Aug 31, 1907 (Sat): Saturday before Labor Day
         
     | 
| 
      
 446 
     | 
    
         
            +
                - Closed on Apr 18, 1908 (Sat): Saturday after Good Friday
         
     | 
| 
      
 447 
     | 
    
         
            +
                - Early Close 1pm on Jun 25, 1908 (Fri): Former President Grover Cleveland funeral
         
     | 
| 
      
 448 
     | 
    
         
            +
                - Closed on Sep 5, 1908 (Sat): Saturday before Labor Day
         
     | 
| 
      
 449 
     | 
    
         
            +
                - Closed on Dec 26, 1908 (Sat): Saturday after Christmas
         
     | 
| 
      
 450 
     | 
    
         
            +
                - Closed on Feb 13, 1909 (Sat): Saturday after Lincoln's birthday
         
     | 
| 
      
 451 
     | 
    
         
            +
                - Closed on Apr 10, 1909 (Sat): Saturday after Good Friday
         
     | 
| 
      
 452 
     | 
    
         
            +
                - Closed on May 29, 1909 (Sat): Saturday before Decoration Day
         
     | 
| 
      
 453 
     | 
    
         
            +
                - Closed on Jul 3, 1909 (Sat): Saturday before Independence Day
         
     | 
| 
      
 454 
     | 
    
         
            +
                - Closed on Sep 4, 1909 (Sat) Saturday before Labor Day
         
     | 
| 
      
 455 
     | 
    
         
            +
                - Closed on Sep 25, 1909 (Sat): Reception Day of the Hudson-Fulton Celebration
         
     | 
| 
      
 456 
     | 
    
         
            +
                - Closed on Mar 26, 1910 (Sat): Saturday after Good Friday
         
     | 
| 
      
 457 
     | 
    
         
            +
                - Early Close 11am on May 7, 1910 (Sat): King Edward VII of England Death
         
     | 
| 
      
 458 
     | 
    
         
            +
                - Late Open 12pm on May 20, 1910 (Fri): King Edward VII of England Funeral
         
     | 
| 
      
 459 
     | 
    
         
            +
                - Closed on May 28, 1910 (Sat): Saturday before Decoration Day
         
     | 
| 
      
 460 
     | 
    
         
            +
                - Closed on Jul 2, 1910 (Sat): Saturday before Independence Day
         
     | 
| 
      
 461 
     | 
    
         
            +
                - Closed on Sep 3, 1910 (Sat): Saturday before Labor Day
         
     | 
| 
      
 462 
     | 
    
         
            +
                - Closed on Dec 24, 1910 (Sat): Saturday before Christmas
         
     | 
| 
      
 463 
     | 
    
         
            +
                - Closed on  Apr 15, 1911 (Sat): Saturday after Good Friday
         
     | 
| 
      
 464 
     | 
    
         
            +
                - Closed on Sep 2, 1911 (Sat): Saturday before Labor Day
         
     | 
| 
      
 465 
     | 
    
         
            +
                - Closed on Dec 23, 1911 (Sat): Saturday before Christmas
         
     | 
| 
      
 466 
     | 
    
         
            +
                - Closed on Aug 31, 1912 (Sat): Saturday before Labor Day
         
     | 
| 
      
 467 
     | 
    
         
            +
                - Closed on Nov 2, 1912 (Sat): Vice-President James S. Sherman funeral
         
     | 
| 
      
 468 
     | 
    
         
            +
                - Closed on Mar 22, 1913 (Sat): Saturday after Good Friday
         
     | 
| 
      
 469 
     | 
    
         
            +
                - Late Open 12pm on Apr 14, 1913 (Mon): JP Morgan funeral
         
     | 
| 
      
 470 
     | 
    
         
            +
                - Closed on May 31, 1913 (Sat): Saturday after Decoration Day
         
     | 
| 
      
 471 
     | 
    
         
            +
                - Closed on Jul 5, 1913 (Sat): Saturday after Independence Day
         
     | 
| 
      
 472 
     | 
    
         
            +
                - Closed on Aug 30, 1913 (Sat): Saturday before Labor Day
         
     | 
| 
      
 473 
     | 
    
         
            +
                - Late Open 12pm on Sep 22, 1913 (Mon): Mayor William J. Gaynor funeral
         
     | 
| 
      
 474 
     | 
    
         
            +
                - Closed on Jul 31-Dec 11, 1914: Pending outbreak of World War I.
         
     | 
| 
      
 475 
     | 
    
         
            +
                    - Bonds reopn Nov 28, 1914 for limited trading with restrictions
         
     | 
| 
      
 476 
     | 
    
         
            +
                    - Stocks (limited in number) reopen Dec 12, 1914 with restrictions
         
     | 
| 
      
 477 
     | 
    
         
            +
                    - Stocks (all stocks) reopen Dec 14, 1914 with restrictions
         
     | 
| 
      
 478 
     | 
    
         
            +
                    - Restrictions removed on Apr 1, 1915
         
     | 
| 
      
 479 
     | 
    
         
            +
                - Closed on Dec 30, 1916 (Sat): Saturday before New Year's Day
         
     | 
| 
      
 480 
     | 
    
         
            +
                - Closed on Jun 5, 1917 (Tue): Draft Registraion Day
         
     | 
| 
      
 481 
     | 
    
         
            +
                - Closed on Aug 4, 1917 (Sat): Heat
         
     | 
| 
      
 482 
     | 
    
         
            +
                - Early Close 12pm on Aug 29, 1917 (Wed): Parade of National Guard
         
     | 
| 
      
 483 
     | 
    
         
            +
                - Closed on Sep 1, 1917 (Sat): Saturday before Labor Day
         
     | 
| 
      
 484 
     | 
    
         
            +
                - Closed on Oct 13, 1917 (Sat): Saturday after Columbus Day
         
     | 
| 
      
 485 
     | 
    
         
            +
                - Early Close 12pm on Oct 24, 1917 (Wed): Liberty Day
         
     | 
| 
      
 486 
     | 
    
         
            +
                - Closed on Jan 28, 1918 (Mon): Heatless day
         
     | 
| 
      
 487 
     | 
    
         
            +
                - Closed on Feb 4, 1918 (Mon): Heatless day
         
     | 
| 
      
 488 
     | 
    
         
            +
                - Closed on Feb 11, 1918 (Mon): Heatless day
         
     | 
| 
      
 489 
     | 
    
         
            +
                - Early Close 12pm on Apr 26, 1918 (Fri): Liberty Day
         
     | 
| 
      
 490 
     | 
    
         
            +
                - NOT IMPLEMENTED: Break from 11am to 12pm on Jul 11, 1918 (Thu): Former Mayor John Purroy Mitchell funeral
         
     | 
| 
      
 491 
     | 
    
         
            +
                - Closed on Sep 12, 1918 (Thu): Draft registration day
         
     | 
| 
      
 492 
     | 
    
         
            +
                - Early Close 2:30pm on Nov 7, 1918 (Thu): False armistice report
         
     | 
| 
      
 493 
     | 
    
         
            +
                - Closed on Nov 11, 1918 (Mon): Armistice signed
         
     | 
| 
      
 494 
     | 
    
         
            +
                - Early Close 12:30pm on Jan 7, 1919 (Tue): Former President Theodore Roosevelt funeral
         
     | 
| 
      
 495 
     | 
    
         
            +
                - Closed on Mar 25, 1919 (Tue): Homecoming of 27th Division
         
     | 
| 
      
 496 
     | 
    
         
            +
                - Closed on May 6, 1919 (Tue): Parade of 77th Division
         
     | 
| 
      
 497 
     | 
    
         
            +
                - Closed on May 31, 1919 (Sat): Saturday after Decoratin Day
         
     | 
| 
      
 498 
     | 
    
         
            +
                - Closed on Jul 5, 1919 (Sat): Saturday after Independence Day
         
     | 
| 
      
 499 
     | 
    
         
            +
                - Closed on Jul 19, 1919 (Sat): Heat and backlog catch up
         
     | 
| 
      
 500 
     | 
    
         
            +
                - Closed on Aug 2, 1919 (Sat): Backlog catch up
         
     | 
| 
      
 501 
     | 
    
         
            +
                - Closed on Aug 16, 1919 (Sat): Backlog catch up
         
     | 
| 
      
 502 
     | 
    
         
            +
                - Closed on Aug 30, 1919 (Sat): Saturday before Labor Day
         
     | 
| 
      
 503 
     | 
    
         
            +
                - Closed on Sep 10, 1919 (Wed): Return of General John J. Pershing
         
     | 
| 
      
 504 
     | 
    
         
            +
                - Late Open 10:30am on Dec 30, 1919 (Tue): Traffic block
         
     | 
| 
      
 505 
     | 
    
         
            +
                - Late Open 10:30am on Feb 6, 1920 (Fri): Traffic block
         
     | 
| 
      
 506 
     | 
    
         
            +
                - Closed on Apr 3, 1920 (Sat): Saturday after Good Friday
         
     | 
| 
      
 507 
     | 
    
         
            +
                - Closed on May 1, 1920 (Sat): Many firms changed office locations
         
     | 
| 
      
 508 
     | 
    
         
            +
                - Closed on Jul 3, 1920 (Sat): Saturday before Independence Day
         
     | 
| 
      
 509 
     | 
    
         
            +
                - Closed on Sep 4, 1920 (Sat): Saturday before Labor Day
         
     | 
| 
      
 510 
     | 
    
         
            +
                - Early Close 12pm on Sep 16, 1920 (Thu): Wall Street explosion
         
     | 
| 
      
 511 
     | 
    
         
            +
                - Closed on May 28, 1921 (Sat): Saturday before Decoration Day
         
     | 
| 
      
 512 
     | 
    
         
            +
                - Closed on Jul 2, 1921 (Sat): Saturday before Independence Day
         
     | 
| 
      
 513 
     | 
    
         
            +
                - Late Open 1pm on Aug 2, 1921 (Tue): Fire in annunciator board
         
     | 
| 
      
 514 
     | 
    
         
            +
                - Closed on Sep 3, 1921 (Sat): Saturday before Labor Day
         
     | 
| 
      
 515 
     | 
    
         
            +
                - Closed on Dec 23, 1922 (Sat): Saturday before Christmas
         
     | 
| 
      
 516 
     | 
    
         
            +
                - Closed on Aug 3, 1923 (Fri): President Warren G. Harding death
         
     | 
| 
      
 517 
     | 
    
         
            +
                - NOT IMPLEMENTED: Break 11am to 12:30pm on Aug 8, 1923 (Wed): President Warren G. Harding funeral
         
     | 
| 
      
 518 
     | 
    
         
            +
                - Closed on Aug 10, 1923 (Fri): President Warren G. Harding funeral
         
     | 
| 
      
 519 
     | 
    
         
            +
                - Early Close 12:30pm on Feb 6, 1924 (Wed): Former President Woodrow Wilson funderal
         
     | 
| 
      
 520 
     | 
    
         
            +
                - Closed on May 31, 1924 (Sat): Saturday after Decoration Day
         
     | 
| 
      
 521 
     | 
    
         
            +
                - Late Open 10:45am on Jan 24, 1925 (Sat): Eclipse of sun
         
     | 
| 
      
 522 
     | 
    
         
            +
                - Early Close 2:30pm on Sep 18, 1925 (Fri): Seymour L. Cromwell funeral (former NYSE president)
         
     | 
| 
      
 523 
     | 
    
         
            +
                - Closed on Dec 26, 1925 (Sat): Saturday after Christmas
         
     | 
| 
      
 524 
     | 
    
         
            +
                - Closed on May 29, 1926 (Sat): Saturday before Decoration Day
         
     | 
| 
      
 525 
     | 
    
         
            +
                - Closed on Jul 3, 1926 (Sat): Saturday before Independence Day
         
     | 
| 
      
 526 
     | 
    
         
            +
                - Closed on Sep 4, 1926 (Sat): Saturday before Labor Day
         
     | 
| 
      
 527 
     | 
    
         
            +
                - Closed on Jun 13, 1927 (Mon): Colonel Charles A. Lindberg parade
         
     | 
| 
      
 528 
     | 
    
         
            +
                - Closed on Apr 7, 1928 (Sat): Backlog catch up
         
     | 
| 
      
 529 
     | 
    
         
            +
                - Closed on Apr 21, 1928 (Sat): Backlog catch up
         
     | 
| 
      
 530 
     | 
    
         
            +
                - Closed on May 5, 1928 (Sat): Backlog catch up
         
     | 
| 
      
 531 
     | 
    
         
            +
                - Closed on May 12, 1928 (Sat): Backlog catch up
         
     | 
| 
      
 532 
     | 
    
         
            +
                - Closed on May 19, 1928 (Sat): Backlog catch up
         
     | 
| 
      
 533 
     | 
    
         
            +
                - Early Closes May 21-25, 1928 (Mon-Fri): Backlog catch up
         
     | 
| 
      
 534 
     | 
    
         
            +
                - Closed on May 26, 1928 (Sat): Backlog catch up
         
     | 
| 
      
 535 
     | 
    
         
            +
                - Closed on Nov 24, 1928 (Sat): Backlog catch up
         
     | 
| 
      
 536 
     | 
    
         
            +
                - Closed on Feb 9, 1929 (Sat): Backlog catch up
         
     | 
| 
      
 537 
     | 
    
         
            +
                - Closed on Feb 23, 1929 (Sat): Saturday after Washington's birthday
         
     | 
| 
      
 538 
     | 
    
         
            +
                - Closed on Mar 30, 1929 (Sat): Saturday after Good Friday
         
     | 
| 
      
 539 
     | 
    
         
            +
                - Closed on Aug 31, 1929 (Sat): Saturday before Labor Day
         
     | 
| 
      
 540 
     | 
    
         
            +
                - Late Open 12pm on Oct 31, 1929 (Thu): Backlog catch up and relieve personnel
         
     | 
| 
      
 541 
     | 
    
         
            +
                - Closed on Nov 1-2, 1929 (Fri-Sat): Backlog catch up and relieve personnel
         
     | 
| 
      
 542 
     | 
    
         
            +
                - Early Closes 1pm on Nov 6-8, 1929 (Wed-Fri): Backlog catch up and relieve personnel
         
     | 
| 
      
 543 
     | 
    
         
            +
                - Closed on Nov 9, 1929 (Sat): Backlog catch up and relieve personnel
         
     | 
| 
      
 544 
     | 
    
         
            +
                - Early Closes 1pm on Nov 11-15, 1929 (Mon-Fri): Backlog catch up and relieve personnel
         
     | 
| 
      
 545 
     | 
    
         
            +
                - Closed on Nov 16, 1929 (Sat): Backlog catch up and relieve personnel
         
     | 
| 
      
 546 
     | 
    
         
            +
                - Closed on Nov 18-22, 1929 (Mon-Fri): Backlog catch up and relieve personnel
         
     | 
| 
      
 547 
     | 
    
         
            +
                - Closed on Nov 23, 1929 (Sat): Backlog catch up and relieve personnel
         
     | 
| 
      
 548 
     | 
    
         
            +
                - Closed on Nov 29-30, 1929 (Fri-Sat): Backlog catch up and relieve personnel
         
     | 
| 
      
 549 
     | 
    
         
            +
                - Early Close 12:30pm on Mar 11, 1930 (Tue): Former President William Howard Taft funeral
         
     | 
| 
      
 550 
     | 
    
         
            +
                - Closed on Apr 19, 1930 (Sat): Saturday after Good Friday
         
     | 
| 
      
 551 
     | 
    
         
            +
                - Closed on May 31, 1930 (Sat): Saturday after Decoration Dday
         
     | 
| 
      
 552 
     | 
    
         
            +
                - Closed on Jul 5, 1930 (Sat): Saturday after Independence Day
         
     | 
| 
      
 553 
     | 
    
         
            +
                - Closed on Aug 30, 1930 (Sat): Saturday before Labor Day
         
     | 
| 
      
 554 
     | 
    
         
            +
                - Closed on Sep 5, 1931 (Sat): Saturday before Labor Day
         
     | 
| 
      
 555 
     | 
    
         
            +
                - Closed on Dec 26, 1931 (Sat): Saturday after Christmas
         
     | 
| 
      
 556 
     | 
    
         
            +
                - Closed on Jul 2, 1932 (Sat): Saturday before Independence Day
         
     | 
| 
      
 557 
     | 
    
         
            +
                - Closed on Jan 7, 1933 (Sat): Former President Calvin Coolidge funeral
         
     | 
| 
      
 558 
     | 
    
         
            +
                - Closed on Mar 4, 1933 (Sat): State banking holiday
         
     | 
| 
      
 559 
     | 
    
         
            +
                - Closed on Mar 6-14, 1933 (Mon-Tue): National banking holiday
         
     | 
| 
      
 560 
     | 
    
         
            +
                - Late Open 12pm on Jul 24-25, 1933 (Mon-Tue): Volume activity
         
     | 
| 
      
 561 
     | 
    
         
            +
                - Late Opens AND Early Closes on Jul 26-28, 1933 (Wed-Fri): Volume activity
         
     | 
| 
      
 562 
     | 
    
         
            +
                - Closed on July 29, 1933 (Sat): Volume activity
         
     | 
| 
      
 563 
     | 
    
         
            +
                - Early Close 12:30pm on Aug 4, 1933 (Fri): Gas fumes on trading floor
         
     | 
| 
      
 564 
     | 
    
         
            +
                - Closed on Aug 5, 1933 (Sat): Volume activity
         
     | 
| 
      
 565 
     | 
    
         
            +
                - Closed on Aug 12, 1933 (Sat): Volume activity
         
     | 
| 
      
 566 
     | 
    
         
            +
                - Closed on Aug 19, 1933 (Sat): Volume activity
         
     | 
| 
      
 567 
     | 
    
         
            +
                - Closed on Aug 26, 1933 (Sat): Volume activity
         
     | 
| 
      
 568 
     | 
    
         
            +
                - Closed on Sep 2, 1933 (Sat): Volume activity
         
     | 
| 
      
 569 
     | 
    
         
            +
                - Early Close 12pm on Sep 13, 1933 (Wed): NRA demonstration
         
     | 
| 
      
 570 
     | 
    
         
            +
                - Late Open 11am on Feb 20, 1934 (Tue): severe snowstorm
         
     | 
| 
      
 571 
     | 
    
         
            +
                - Late Open 11am on Jan 28, 1936 (Tue): King George V of England funeral
         
     | 
| 
      
 572 
     | 
    
         
            +
                - Closed on Dec 26, 1936 (Sat): Saturday after Christmas
         
     | 
| 
      
 573 
     | 
    
         
            +
                - Closed on May 29, 1937 (Sat): Saturday before Decoration Day
         
     | 
| 
      
 574 
     | 
    
         
            +
                - Closed on Jul 3, 1937 (Sat): Saturday before Independence Day
         
     | 
| 
      
 575 
     | 
    
         
            +
                - NOT IMPLEMENTED Break from 12-13:00 on May 18, 1942 (Mon): NYSE 150th anniversary
         
     | 
| 
      
 576 
     | 
    
         
            +
                - NOT IMPLEMENTED Break from 14:32-14:58 on Oct 22, 1942 (Thu): Civil Defense drill
         
     | 
| 
      
 577 
     | 
    
         
            +
                - NOT IMPLEMENTED Break from 14:38-14:59 on Oct 26, 1943 (Tue): Civil Defense drill
         
     | 
| 
      
 578 
     | 
    
         
            +
                    - Reopened from 15:20-15:40 under special rule of the Board
         
     | 
| 
      
 579 
     | 
    
         
            +
                - Closed on Aug 19, 1944 (Sat)
         
     | 
| 
      
 580 
     | 
    
         
            +
                - Closed on Aug 26, 1944 (Sat)
         
     | 
| 
      
 581 
     | 
    
         
            +
                - Closed on Sep 2, 1944 (Sat)
         
     | 
| 
      
 582 
     | 
    
         
            +
                - Closed on Apr 14, 1945 (Sat): President Franklin D. Roosevelt National Day of mourning
         
     | 
| 
      
 583 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:00-13:00 on Jun 19, 1945 (Tue): Parade for General Eisenhower
         
     | 
| 
      
 584 
     | 
    
         
            +
                - Closed on Saturdays Jul 7-Sep 1, 1945
         
     | 
| 
      
 585 
     | 
    
         
            +
                - Closed on Aug 15-16, 1945 (Wed-Thu): VJ Day. End of World War II
         
     | 
| 
      
 586 
     | 
    
         
            +
                - Closed on Oct 13, 1945 (Sat): Saturday after Columbus Day
         
     | 
| 
      
 587 
     | 
    
         
            +
                - Closed on Oct 27, 1945 (Sat): Navy Day
         
     | 
| 
      
 588 
     | 
    
         
            +
                - Closed on Dec 24, 1945 (Mon): Christmas Eve
         
     | 
| 
      
 589 
     | 
    
         
            +
                - Closed on Feb 23, 1946 (Sat): Saturday after Washington's birthday
         
     | 
| 
      
 590 
     | 
    
         
            +
                - Closed on May 25, 1946 (Sat): Railroad strike
         
     | 
| 
      
 591 
     | 
    
         
            +
                - Closed on Saturdays Jun 1-Sep 28, 1946 (Sat-Sat)
         
     | 
| 
      
 592 
     | 
    
         
            +
                - Closed on Saturdays May 31-Sep 27, 1947 (Sat-Sat)
         
     | 
| 
      
 593 
     | 
    
         
            +
                - Closed on Jan 3, 1948 (Sat): severe weather
         
     | 
| 
      
 594 
     | 
    
         
            +
                - Closed on Saturdays May 29-Sep 25, 1948 (Sat-Sat)
         
     | 
| 
      
 595 
     | 
    
         
            +
                - Closed on Saturdays May 28-Sep 4, 1948 (Sat-Sat)
         
     | 
| 
      
 596 
     | 
    
         
            +
                - Cosed on Dec 24, 1949 (Sat): Christmas Eve
         
     | 
| 
      
 597 
     | 
    
         
            +
                - Closed on Saturdays Jun 3-Sep 30, 1950 (Sat-Sat)
         
     | 
| 
      
 598 
     | 
    
         
            +
                - Closed on Dec 12, 1950 (Sat): Saturday before Christmas Eve
         
     | 
| 
      
 599 
     | 
    
         
            +
                - NOT IMPLEMENTED Break from 11:00-13:00 on Apr 20, 1951 (Fri): Parade for General MacArthur
         
     | 
| 
      
 600 
     | 
    
         
            +
                - Closed on Saturdays Jun 2-Sep 29, 1951 (Sat-Sat)
         
     | 
| 
      
 601 
     | 
    
         
            +
                - NOT IMPLEMENTED Break from 10:33-11:05 (Wed): Civil Defense Drill
         
     | 
| 
      
 602 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 1951 (Mon): Christmas Eve
         
     | 
| 
      
 603 
     | 
    
         
            +
                - Closed on Saturdays May 31-Sep 27, 1952 (Sat-Sat)
         
     | 
| 
      
 604 
     | 
    
         
            +
                    - As of Sep 29, 1952 Saturdays were retired as trading days
         
     | 
| 
      
 605 
     | 
    
         
            +
                    - As of Sep 29, 1952, M-F trading closes at 3:30pm (30 minutes longer)
         
     | 
| 
      
 606 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:02-10:32 on Jun 14, 1954 (Mon): Civil Defense drill
         
     | 
| 
      
 607 
     | 
    
         
            +
                - Closed on Dec 24, 1954 (Fri): Christmas Eve
         
     | 
| 
      
 608 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 14:05-14:35 on Jun 15, 1955 (Wed): Civil Defense drill
         
     | 
| 
      
 609 
     | 
    
         
            +
                - Closed on Dec 24, 1956 (Mon): Christmas Eve
         
     | 
| 
      
 610 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 13:45-14:15 on Jul 12, 1957 (Fri): Civil Defense drill
         
     | 
| 
      
 611 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:30-10:50 on May 6, 1958 (Tue): Civil Defense drill
         
     | 
| 
      
 612 
     | 
    
         
            +
                - Closed on Dec 26, 1958 (Fri): Day after Christmas
         
     | 
| 
      
 613 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 13:30-13:50 on Apr 17, 1959 (Fri): Civil Defense drill
         
     | 
| 
      
 614 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 14:16-14:40 on May 3, 1960 (Tue): Civil Defense drill
         
     | 
| 
      
 615 
     | 
    
         
            +
                - Late Open 11:00 on Dec 12, 1960 (Mon): severe snowstorm
         
     | 
| 
      
 616 
     | 
    
         
            +
                - Closed on May 29, 1961 (Mon): Day before Decoration Day
         
     | 
| 
      
 617 
     | 
    
         
            +
                - Early Close 14:07 on Nov 22, 1963 (Fri): President John F. Kennedy assassintion
         
     | 
| 
      
 618 
     | 
    
         
            +
                - Closed on Nov 25, 1963 (Mon): President John F. Kennedy funeral
         
     | 
| 
      
 619 
     | 
    
         
            +
                - Early Close 14:00 on Oct 23, 1964 (Fri): Former President Herbert C. Hoover funeral
         
     | 
| 
      
 620 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:00-11:02 on Jan 25, 1965 (Mon): Sir Winston Churchill 2 minutes of silence
         
     | 
| 
      
 621 
     | 
    
         
            +
                - Late Open 11:05 on Nov 10, 1965 (Wed): Power failure in NY grid supply
         
     | 
| 
      
 622 
     | 
    
         
            +
                - Closed on Dec 24, 1965 (Fri): Christmas Eve
         
     | 
| 
      
 623 
     | 
    
         
            +
                - Early Closes 14:00 on Jan 6-14, 1966 (Thu-Fri): Transit strike
         
     | 
| 
      
 624 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 13:00-13:01 on Feb 3, 1967 (Fri): Apollo I disaster moment of silence
         
     | 
| 
      
 625 
     | 
    
         
            +
                - Late Open 10:15 AND Early Close 14:00 on Feb 7, 1967 (Tue): snowstorm
         
     | 
| 
      
 626 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 12:58-13:13 on May 17, 1967 (Wed): Vice President Humphrey spoke in honor of NYSE's 175th anniversary
         
     | 
| 
      
 627 
     | 
    
         
            +
                - Early Closes 14:00 on Aug 8-18, 1967 (Tue-Fri): Backlog catch up
         
     | 
| 
      
 628 
     | 
    
         
            +
                - Early Closes 14:00 on Jan 22-Mar 1, 1968 (Mon-Fri): Backlog catch up
         
     | 
| 
      
 629 
     | 
    
         
            +
                - Closed on Feb 12, 1968 (Mon): Lincoln's birthday (offices open, trading closed)
         
     | 
| 
      
 630 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:00-11:01 on Apr 5, 1968 (Fri): Dr. Martin Luther King, Jr. moment of silence
         
     | 
| 
      
 631 
     | 
    
         
            +
                - Closed on Apr 9, 1968 (Tue): Martin Luther King, Jr. day or mourning
         
     | 
| 
      
 632 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:00-11:02 on Jun 6, 1968 (Fri): Senator Robert F. Kennedy moment of silence
         
     | 
| 
      
 633 
     | 
    
         
            +
                - 4 day workweek Closed on a Wednesday OR Holiday from Jun 12-Dec 31, 1968: Paperwork crisis
         
     | 
| 
      
 634 
     | 
    
         
            +
                - Closed on July 5, 1968 (Fri): Day after Independence Day
         
     | 
| 
      
 635 
     | 
    
         
            +
                - Early Closes 14:00 on Jan 2-Jul 3, 1969: Paperwork Crisis
         
     | 
| 
      
 636 
     | 
    
         
            +
                - Closed on Feb 10, 1969 (Mon): heavy snow
         
     | 
| 
      
 637 
     | 
    
         
            +
                - Late open 11am on Feb 11, 1969 (Tue): heavy snow
         
     | 
| 
      
 638 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 13:30-13:32 on Mar 28, 1969 (Fri): Former President Dwight D. Eisenhower moment of silence
         
     | 
| 
      
 639 
     | 
    
         
            +
                - Closed on Mar 31, 1969 (Mon): Former President Dwight D. Eisenhower funeral
         
     | 
| 
      
 640 
     | 
    
         
            +
                - Late Open 10:45 on Jun 2, 1969 (Mon): storm
         
     | 
| 
      
 641 
     | 
    
         
            +
                - Early Closes 14:30 on Jul 7-Sep 26,1969 (Mon-Fri): Paperwork Crisis
         
     | 
| 
      
 642 
     | 
    
         
            +
                - Closed on Jul 21, 1969 (Mon): National Day of Participation for lunar exploration
         
     | 
| 
      
 643 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 12:35-13:05 on Sep 3, 1969 (Wed): power failure
         
     | 
| 
      
 644 
     | 
    
         
            +
                - Early Closes 15:00 on Sep 29, 1969 to May 1, 1970: Paperwork Crisis
         
     | 
| 
      
 645 
     | 
    
         
            +
                - Closed on Dec 28, 1972 (Thu): Former President Harry S. Truman funeral
         
     | 
| 
      
 646 
     | 
    
         
            +
                - Closed on Jan 25, 1973 (Thu): Former President Lyndon B. Johnson funeral
         
     | 
| 
      
 647 
     | 
    
         
            +
                - Late Open 11am on Dec 17, 1973 (Mon): ice storm
         
     | 
| 
      
 648 
     | 
    
         
            +
                - Late Open 10:15 on Jan 16, 1974 (Wed): Merrill Lynch computer trouble
         
     | 
| 
      
 649 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:09-11:35 on Apr 10, 1974 (Wed): computer malfunction
         
     | 
| 
      
 650 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:46-12:22 on Oct 15, 1974 (Wed): Ticker down at 11:37 to 12:22
         
     | 
| 
      
 651 
     | 
    
         
            +
                - Late Open 10:15 on Nov 22, 1974 (Fri): Fire drill
         
     | 
| 
      
 652 
     | 
    
         
            +
                - Early Close 14:00 on Dec 24, 1974 (Tue): Christmas Eve
         
     | 
| 
      
 653 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:07-10:50 on Jan 7, 1975 (Tue): Computer stopped
         
     | 
| 
      
 654 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 13:24-13:45 on Jan 15, 1975 (Wed): Computer stopped
         
     | 
| 
      
 655 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:24-11:00 on Feb 7, 1975 (Fri): Computer failure
         
     | 
| 
      
 656 
     | 
    
         
            +
                - Early Close 14:30 on Feb 12, 1975 (Wed): snowstorm
         
     | 
| 
      
 657 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:09-10:35 on Apr 9, 1975 (Wed): Computer stopped
         
     | 
| 
      
 658 
     | 
    
         
            +
                - Early Close 14:00 on Dec 24, 1975 (Wed): Christmas Eve
         
     | 
| 
      
 659 
     | 
    
         
            +
                - Late Open 11:15 on Feb 2, 1976 (Mon): storm
         
     | 
| 
      
 660 
     | 
    
         
            +
                - Late Open UNKNOWN (coded as 10:15) on Jun 8, 1976 (Tue): fire drill
         
     | 
| 
      
 661 
     | 
    
         
            +
                - Early Close 15:00 on Aug 9, 1976 (Mon): hurricane watch
         
     | 
| 
      
 662 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 1 minute time UNKNOWN on Nov 4, 1976 (Thu): Former NYSE Chair Gustave L. Levy moment of silence
         
     | 
| 
      
 663 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:00-11:01 on Feb 24, 1977 (Thu): Former NYSE Chair John A. Coleman moment of silence
         
     | 
| 
      
 664 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:24-11:45 on Mar 1, 1977 (Tue): Fire on moving ramp between trading floor and Blue Room
         
     | 
| 
      
 665 
     | 
    
         
            +
                - Closed on July 14, 1977 (Thu): Power failure in NYC
         
     | 
| 
      
 666 
     | 
    
         
            +
                - Late Open 12pm on Jan 20, 1978 (Fri): snowstorm
         
     | 
| 
      
 667 
     | 
    
         
            +
                - Early Close 2pm on Feb 6, 1978 (Mon): snowstorm
         
     | 
| 
      
 668 
     | 
    
         
            +
                - Late Open 11am on Feb 7, 1978 (Tue): snowstorm
         
     | 
| 
      
 669 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 1 minute time UNKNOWN on Dec 13, 1979 (Thu): Former NYSE Chair Robert L. Stott minute of silence
         
     | 
| 
      
 670 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:11-12:04 on Oct 13, 1980 (Mon): Computer malfunction
         
     | 
| 
      
 671 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 1 minute time UNKNOWN on Dec 30, 1980 (Tue): Former NYSE Chair James Crane Kellogg III moment of silence
         
     | 
| 
      
 672 
     | 
    
         
            +
                - Early Close 3:17pm on Mar 30, 1981 (Mon): President Reagan assassination attempt
         
     | 
| 
      
 673 
     | 
    
         
            +
                - Early Close 3:28pm on Sep 9, 1981 (Wed): Con Edison power failure
         
     | 
| 
      
 674 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 12:26-12:45pm on Sep 16, 1981 (Wed): Fire alarm malfunction
         
     | 
| 
      
 675 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:25-11:00am on Dec 28, 1982 (Tue): small fire
         
     | 
| 
      
 676 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 13:51-15:30 on Oct 13, 1983 (Thu): low speed ticker malfunction
         
     | 
| 
      
 677 
     | 
    
         
            +
                - Closed on Sep 27, 1985 (Fri): Hurricane Gloria
         
     | 
| 
      
 678 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:00-11:01 on Jan 29, 1986 (Wed): Challenger space crew moment of silence
         
     | 
| 
      
 679 
     | 
    
         
            +
                - Early Closes 2pm on Oct 23-30, 1987 (Fri-Fri): October 19th break volume
         
     | 
| 
      
 680 
     | 
    
         
            +
                - Early Closes 2:30pm on Nov 2-4, 1987 (Mon-Wed): reason not given volume assumed
         
     | 
| 
      
 681 
     | 
    
         
            +
                - Early Closes 3pm on Nov 5-6, 1987 (Thu-Fri): reason not given volume assumed
         
     | 
| 
      
 682 
     | 
    
         
            +
                - Early Closes 3:30pm on Nov 9-11, 1987 (Mon-Wed): Trading floor and clerical staff strike
         
     | 
| 
      
 683 
     | 
    
         
            +
                - Late Open 11am on Nov 10, 1989 (Fri): Electrical fire
         
     | 
| 
      
 684 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 9:41-11:15 on Nov 23, 1990 (Fri): Internal power failure
         
     | 
| 
      
 685 
     | 
    
         
            +
                - Early Close 2pm on Dec 24, 1990 (Mon): Christmas Eve
         
     | 
| 
      
 686 
     | 
    
         
            +
                - Late Open 11am on Dec 27, 1990 (Thu): explosion of Con Edison transformer
         
     | 
| 
      
 687 
     | 
    
         
            +
                - Late Open 9:31am on Jan 17, 1991 (Thu): American troops in Persian Gulf moment of silence
         
     | 
| 
      
 688 
     | 
    
         
            +
                - Late Open 9:31am on Feb 25, 1991 (Thu): American troops in Persian Gulf moment of silence
         
     | 
| 
      
 689 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:21-10:45am on Oct 22, 1991 (Tue): power dip
         
     | 
| 
      
 690 
     | 
    
         
            +
                - Early Close 2pm on Dec 24, 1991 (Tue): Christmas Eve
         
     | 
| 
      
 691 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 1 minute time UNKNOWN on Mar 19, 1992 (Thu): Former NYSE Chair Bernard J. Lasker moment of silence
         
     | 
| 
      
 692 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 1 minute time UNKNOWN on May 15, 1992 (Fri): Former NYSE President G. Keith Funston moment of silence
         
     | 
| 
      
 693 
     | 
    
         
            +
                - NOT IMPELMENTED Break 1 minute time UNKNOWN on Jun 15, 1992 (Mon): Former NYSE President Robert W. Haack moment of silence
         
     | 
| 
      
 694 
     | 
    
         
            +
                - Early Close 2pm on Nov 27, 1992 (Fri): Day after Thanksgiving
         
     | 
| 
      
 695 
     | 
    
         
            +
                - Early Close 2pm on Dec 24, 1992 (Thu): Christmas Eve
         
     | 
| 
      
 696 
     | 
    
         
            +
                - Early Close 1pm on Nov 26, 1993 (Fri): Day after Thanksgiving
         
     | 
| 
      
 697 
     | 
    
         
            +
                - Early Close 14:30 on Feb 11, 1994 (Fri): snowstorm
         
     | 
| 
      
 698 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 12:00-12:02 on Apr 25, 1994 (Mon): Former President Richard M. Nixon moment of silence
         
     | 
| 
      
 699 
     | 
    
         
            +
                - Closed on Apr 27, 1994 (Wed): Former President Richard M. Nixon funderal
         
     | 
| 
      
 700 
     | 
    
         
            +
                - Early Close 1pm on Nov 25, 1994 (Fri): Day after Thanksgiving
         
     | 
| 
      
 701 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:02-10:03 on Apr 26, 1995 (Wed): Oklahoma City bombing victims moment of silence
         
     | 
| 
      
 702 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 1995 (Mon): Day before Independence Day
         
     | 
| 
      
 703 
     | 
    
         
            +
                - Early Close 1pm on Nov 24, 1995 (Fri): Day after Thanksgiving
         
     | 
| 
      
 704 
     | 
    
         
            +
                - Late Open 10:30am on Dec 18, 1995 (Mon): Computer system troubles
         
     | 
| 
      
 705 
     | 
    
         
            +
                - Late Open 11am AND Early Close 2pm on Jan 8, 1996 (Mon): snowstorm
         
     | 
| 
      
 706 
     | 
    
         
            +
                - NOT IMPLEMENTED Break time UNKNOWN on Apr 4, 1996 (Thu): Commerce Secretary Ron Brown and others killed in Balkans plane crash
         
     | 
| 
      
 707 
     | 
    
         
            +
                - Early Close 1pm on July 5, 1996 (Fri): Day after Independence Day
         
     | 
| 
      
 708 
     | 
    
         
            +
                - Early Close 1pm on Nov 29, 1996 (Fri): Day after Thanksgiving
         
     | 
| 
      
 709 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 1996 (Tue): Christmas Eve
         
     | 
| 
      
 710 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 1997 (Thu): Day before Independence Day
         
     | 
| 
      
 711 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 14:35-15:05 on Oct 27, 1997 (Mon): Circuit breaker triggered
         
     | 
| 
      
 712 
     | 
    
         
            +
                - Early Close 3:30pm on Oct 27, 1997 (Mon): Circuit breaker triggered
         
     | 
| 
      
 713 
     | 
    
         
            +
                - Early Close 1pm on Nov 28, 1997 (Fri): Day after Thanksgiving
         
     | 
| 
      
 714 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 1997 (Wed): Christmas Eve
         
     | 
| 
      
 715 
     | 
    
         
            +
                - Early Close 1pm on Dec 26, 1997 (Fri): Friday after Christmas
         
     | 
| 
      
 716 
     | 
    
         
            +
                - NOT IMPLEMENTED Break time UNKNOWN on Jul 29, 1998 (Wed): Former NYSE President William McChesney Marting, Jr. moment of silence
         
     | 
| 
      
 717 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 13:16-14:15 on Oct 26, 1998 (Mon): Computer switch malfunction
         
     | 
| 
      
 718 
     | 
    
         
            +
                - Early Close 1pm on Nov 27, 1998 (Fri): Day after Thanksgiving
         
     | 
| 
      
 719 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 1998 (Thu): Christmas Eve
         
     | 
| 
      
 720 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:00-10:02 on Mar 25, 1999 (Thu): NATO troops in Kosovo minute of silence
         
     | 
| 
      
 721 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 12:00-12:02 on Apr 26, 1999 (Mon): Columbine High School killings moment of silence
         
     | 
| 
      
 722 
     | 
    
         
            +
                - Early Close 1pm on Nov 26, 1999 (Fri): Day after Thanksgiving
         
     | 
| 
      
 723 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 1999 (Fri): Christmas Eve
         
     | 
| 
      
 724 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 12:00-12:01 on Feb 16, 2000 (Wed): Former NYSE Chair Walter N. Frank moment of silence
         
     | 
| 
      
 725 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 12:00-12:01 on May 4, 2000 (Thu): Archbishop of NY Cardinal John O'Connor moment of silence
         
     | 
| 
      
 726 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2000 (Mon): Day before Independence Day
         
     | 
| 
      
 727 
     | 
    
         
            +
                - Early Close 1pm on Nov 24, 2000 (Fri): Day after Thanksgiving
         
     | 
| 
      
 728 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:10-11:35 on Jun 8, 2001 (Fri): computer systems connectivity problem
         
     | 
| 
      
 729 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2001 (Tue): Day before Independence Day
         
     | 
| 
      
 730 
     | 
    
         
            +
                - Closed on Sep 11-14, 2001 (Tue-Fri): Terrorist attack on World Trade Center
         
     | 
| 
      
 731 
     | 
    
         
            +
                - Late Open 9:33am on Sep 17, 2001 (Mon): 2 minutes silence in honor of lives lost on 9/11
         
     | 
| 
      
 732 
     | 
    
         
            +
                - Late Open 9:31am on Oct 8, 2001 (Mon): 1 minute silence for troops engaged in Operation Enduring Freedom
         
     | 
| 
      
 733 
     | 
    
         
            +
                - Early Close 1pm on Nov 23, 2001 (Fri): Day after Thanksgiving
         
     | 
| 
      
 734 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2001 (Mon): Christmas Eve
         
     | 
| 
      
 735 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 10:29-10:31 on May 30, 2002 (Thu): Commemorate end of recovery work at Ground Zero
         
     | 
| 
      
 736 
     | 
    
         
            +
                - Early Close 1pm on Jul 5, 2002 (Fri): Day after Independence Day
         
     | 
| 
      
 737 
     | 
    
         
            +
                - Late Opening 12:00pm on Sep 11, 2002 (Wed): 1 year anniversary of 9/11 attack
         
     | 
| 
      
 738 
     | 
    
         
            +
                - Early Close 1pm on Nov 29, 2002 (Fri): Day after Thanksgiving
         
     | 
| 
      
 739 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2002 (Tue): Christmas Eve
         
     | 
| 
      
 740 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:00-11:02 on Feb 3, 2002 (Mon): Columbia Space Shuttle lives lost moment of silence
         
     | 
| 
      
 741 
     | 
    
         
            +
                - Late Opening 9:32am on Mar 20, 2003 (Thu): Operation Iraqi Freedom Troops moment of silence
         
     | 
| 
      
 742 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2003 (Thu): Day before Independence Day
         
     | 
| 
      
 743 
     | 
    
         
            +
                - NOT IMPLEMENTED multiple 1-minute Breaks 9:59 and 10:29 on Sep 11, 2003 (Thu): 9/11 Commemoration
         
     | 
| 
      
 744 
     | 
    
         
            +
                - Early Close 1pm on Nov 28, 2003 (Fri): Day after Thanksgiving
         
     | 
| 
      
 745 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2003 (Wed): Christmas Eve
         
     | 
| 
      
 746 
     | 
    
         
            +
                - Early Close 1pm on Dec 26, 2003 (Fri): Friday after Christmas
         
     | 
| 
      
 747 
     | 
    
         
            +
                - Late Open 9:32am on Jun 7, 2004 (Mon): Former President Ronald Reagan death moment of silence
         
     | 
| 
      
 748 
     | 
    
         
            +
                - Closed on Jun 11, 2004 (Fri): Former President Ronald Reagan National Day of Mourning
         
     | 
| 
      
 749 
     | 
    
         
            +
                - Early Close 1pm on Nov 26, 2004 (Fri): Day after Thanksgiving
         
     | 
| 
      
 750 
     | 
    
         
            +
                - Early Close 3:56pm on Jun 1, 2005 (Wed): Systems communication problem
         
     | 
| 
      
 751 
     | 
    
         
            +
                - Early Close 1pm on Nov 25, 2005 (Fri): Day after Thanksgiving
         
     | 
| 
      
 752 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2006 (Mon): Day before Independence Day
         
     | 
| 
      
 753 
     | 
    
         
            +
                - Early Close 1pm on Nov 24, 2006 (Fri): Day after Thanksgiving
         
     | 
| 
      
 754 
     | 
    
         
            +
                - Late Open 9:32am on Dec 27, 2006 (Wed): Former President Gerald Ford moment of silence
         
     | 
| 
      
 755 
     | 
    
         
            +
                - Closed on Jan 2, 2007 (Tue): Former President Gerald Ford National Day of Mourning
         
     | 
| 
      
 756 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2007 (Tue): Day before Independence Day
         
     | 
| 
      
 757 
     | 
    
         
            +
                - Early Close 1pm on Nov 23, 2007 (Fri): Day after Thanksgiving
         
     | 
| 
      
 758 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2007 (Mon): Christmas Eve
         
     | 
| 
      
 759 
     | 
    
         
            +
                - Early Close 1pm on Jul 4, 2008 (Thu): Day before Independence Day
         
     | 
| 
      
 760 
     | 
    
         
            +
                - Early Close 1pm on Nov 28, 2008 (Fri): Day after Thanksgiving
         
     | 
| 
      
 761 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2008 (Wed): Christmas Eve
         
     | 
| 
      
 762 
     | 
    
         
            +
                - NOT IMPLEMENTED Extended Close 4:15pm on Jul 2, 2009 (Thu): Execute customer orders impacted by system irregularities
         
     | 
| 
      
 763 
     | 
    
         
            +
                - Early Close 1pm on Nov 27, 2009 (Fri): Day after Thanksgiving
         
     | 
| 
      
 764 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2009 (Thu): Christmas Eve
         
     | 
| 
      
 765 
     | 
    
         
            +
                - Early Close 1pm on Nov 26, 2010 (Fri): Day after Thanksgiving
         
     | 
| 
      
 766 
     | 
    
         
            +
                - NOT IMPLEMENTED Break 11:00-11:01 on Jan 10, 2011 (Mon): Arizona shooting victims moment of silence
         
     | 
| 
      
 767 
     | 
    
         
            +
             
     | 
| 
      
 768 
     | 
    
         
            +
                end of reference: https://github.com/rsheftel/pandas_market_calendars/files/6827110/Stocks.NYSE-Closings.pdf
         
     | 
| 
      
 769 
     | 
    
         
            +
                *******************************************************************
         
     | 
| 
      
 770 
     | 
    
         
            +
             
     | 
| 
      
 771 
     | 
    
         
            +
                https://www.streetinsider.com/Insiders+Blog/NYSE+Releases+2010+and+2011+Holiday+Calendar/4915576.html
         
     | 
| 
      
 772 
     | 
    
         
            +
                - Early Close 1pm on Nov 25, 2011 (Fri): Day after Thanksgiving
         
     | 
| 
      
 773 
     | 
    
         
            +
             
     | 
| 
      
 774 
     | 
    
         
            +
                https://holidaystracker.com/stock-market/new-york-stock-exchange-holidays-2012/
         
     | 
| 
      
 775 
     | 
    
         
            +
                - Early Close 1pm on Jul 4, 2012 (Tue): Day before Independence Day
         
     | 
| 
      
 776 
     | 
    
         
            +
                - Closed on 10/29/2012 and 10/30/2012 due to Hurricane Sandy.
         
     | 
| 
      
 777 
     | 
    
         
            +
                - Early Close 1pm on Nov 23, 2012 (Fri): Day after Thanksgiving
         
     | 
| 
      
 778 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2012 (Mon): Christmas Eve
         
     | 
| 
      
 779 
     | 
    
         
            +
             
     | 
| 
      
 780 
     | 
    
         
            +
                https://holidaystracker.com/stock-market/new-york-stock-exchange-nyse-holidays-2013/
         
     | 
| 
      
 781 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2013 (Wed): Day before Independence Day
         
     | 
| 
      
 782 
     | 
    
         
            +
                - Early Close 1pm on Nov 29, 2013 (Fri): Day after Thanksgiving
         
     | 
| 
      
 783 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2013 (Tue): Christmas Eve
         
     | 
| 
      
 784 
     | 
    
         
            +
             
     | 
| 
      
 785 
     | 
    
         
            +
                https://www.streetinsider.com/Insiders+Blog/NYSE+2014+and+2015+Holiday+Hours/8999575.html    - Early Close 1pm on Jul 3, 2014 (Thu): Day before Independence Day
         
     | 
| 
      
 786 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2014 (Thu): Day before Independence Day
         
     | 
| 
      
 787 
     | 
    
         
            +
                - Early Close 1pm on Nov 28, 2014 (Fri): Day after Thanksgiving
         
     | 
| 
      
 788 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2014 (Wed): Christmas Eve
         
     | 
| 
      
 789 
     | 
    
         
            +
             
     | 
| 
      
 790 
     | 
    
         
            +
                https://www.businesswire.com/news/home/20141208006349/en/NYSE-Group-2016-Holiday-Calendar-and-Early-Closings
         
     | 
| 
      
 791 
     | 
    
         
            +
                - Early Close 1pm on Nov 27, 2015 (Fri): Day after Thanksgiving
         
     | 
| 
      
 792 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2015 (Thu): Christmas Eve
         
     | 
| 
      
 793 
     | 
    
         
            +
                - Early Close 1pm on Nov 25, 2016 (Fri): Day after Thanksgiving
         
     | 
| 
      
 794 
     | 
    
         
            +
             
     | 
| 
      
 795 
     | 
    
         
            +
                https://www.stockinvestor.com/30380/stock-market-holidays-2017/
         
     | 
| 
      
 796 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2017 (Mon): Day before Independence Day
         
     | 
| 
      
 797 
     | 
    
         
            +
                - Early Close 1pm on Nov 24, 2017 (Fri): Day after Thanksgiving
         
     | 
| 
      
 798 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2018 (Tue): Day before Independence Day
         
     | 
| 
      
 799 
     | 
    
         
            +
                - Early Close 1pm on Nov 23, 2018 (Fri): Day after Thanksgiving
         
     | 
| 
      
 800 
     | 
    
         
            +
                - Closed on 12/5/2018 due to George H.W. Bush's death.
         
     | 
| 
      
 801 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2018 (Tue): Christmas Eve
         
     | 
| 
      
 802 
     | 
    
         
            +
                - Early Close 1pm on Jul 3, 2019 (Wed): Day before Independence Day
         
     | 
| 
      
 803 
     | 
    
         
            +
                - Early Close 1pm on Nov 29, 2019 (Fri): Day after Thanksgiving
         
     | 
| 
      
 804 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2019 (Wed): Christmas Eve
         
     | 
| 
      
 805 
     | 
    
         
            +
             
     | 
| 
      
 806 
     | 
    
         
            +
                https://holidaystracker.com/stock-market/new-york-stock-exchange-nyse-holidays-2020/
         
     | 
| 
      
 807 
     | 
    
         
            +
                - Early Close 1pm on Nov 27, 2020 (Fri): Day after Thanksgiving
         
     | 
| 
      
 808 
     | 
    
         
            +
                - Early Close 1pm on Dec 24, 2020 (Thu): Christmas Eve
         
     | 
| 
      
 809 
     | 
    
         
            +
             
     | 
| 
      
 810 
     | 
    
         
            +
             
     | 
| 
      
 811 
     | 
    
         
            +
                NOTE: The exchange was **not** closed early on Friday December 26, 2008,
         
     | 
| 
      
 812 
     | 
    
         
            +
                nor was it closed on Friday December 26, 2014. The next Thursday Christmas
         
     | 
| 
      
 813 
     | 
    
         
            +
                will be in 2025.  If someone is still maintaining this code in 2025, then
         
     | 
| 
      
 814 
     | 
    
         
            +
                we've done alright...and we should check if it's a half day.
         
     | 
| 
      
 815 
     | 
    
         
            +
             
     | 
| 
      
 816 
     | 
    
         
            +
                """
         
     | 
| 
      
 817 
     | 
    
         
            +
             
     | 
| 
      
 818 
     | 
    
         
            +
                aliases = ["NYSE", "stock", "NASDAQ", "BATS", "DJIA", "DOW"]
         
     | 
| 
      
 819 
     | 
    
         
            +
             
     | 
| 
      
 820 
     | 
    
         
            +
                regular_market_times = {
         
     | 
| 
      
 821 
     | 
    
         
            +
                    "pre": ((None, time(4)),),
         
     | 
| 
      
 822 
     | 
    
         
            +
                    "market_open": ((None, time(10)), ("1985-01-01", time(9, 30))),
         
     | 
| 
      
 823 
     | 
    
         
            +
                    "market_close": (
         
     | 
| 
      
 824 
     | 
    
         
            +
                        (None, time(15)),
         
     | 
| 
      
 825 
     | 
    
         
            +
                        ("1952-09-29", time(15, 30)),
         
     | 
| 
      
 826 
     | 
    
         
            +
                        ("1974-01-01", time(16)),
         
     | 
| 
      
 827 
     | 
    
         
            +
                    ),
         
     | 
| 
      
 828 
     | 
    
         
            +
                    "post": ((None, time(20)),),
         
     | 
| 
      
 829 
     | 
    
         
            +
                }
         
     | 
| 
      
 830 
     | 
    
         
            +
             
     | 
| 
      
 831 
     | 
    
         
            +
                _saturday_close = time(12)
         
     | 
| 
      
 832 
     | 
    
         
            +
                _saturday_end = pd.Timestamp("1952-09-29", tz="UTC")
         
     | 
| 
      
 833 
     | 
    
         
            +
             
     | 
| 
      
 834 
     | 
    
         
            +
                @property
         
     | 
| 
      
 835 
     | 
    
         
            +
                def name(self):
         
     | 
| 
      
 836 
     | 
    
         
            +
                    return "NYSE"
         
     | 
| 
      
 837 
     | 
    
         
            +
             
     | 
| 
      
 838 
     | 
    
         
            +
                @property
         
     | 
| 
      
 839 
     | 
    
         
            +
                def full_name(self):
         
     | 
| 
      
 840 
     | 
    
         
            +
                    return "New York Stock Exchange"
         
     | 
| 
      
 841 
     | 
    
         
            +
             
     | 
| 
      
 842 
     | 
    
         
            +
                @property
         
     | 
| 
      
 843 
     | 
    
         
            +
                def tz(self):
         
     | 
| 
      
 844 
     | 
    
         
            +
                    return ZoneInfo("America/New_York")
         
     | 
| 
      
 845 
     | 
    
         
            +
             
     | 
| 
      
 846 
     | 
    
         
            +
                @property
         
     | 
| 
      
 847 
     | 
    
         
            +
                def weekmask(self):
         
     | 
| 
      
 848 
     | 
    
         
            +
                    return "Mon Tue Wed Thu Fri"
         
     | 
| 
      
 849 
     | 
    
         
            +
             
     | 
| 
      
 850 
     | 
    
         
            +
                @property
         
     | 
| 
      
 851 
     | 
    
         
            +
                def weekmask_pre_1952(self):
         
     | 
| 
      
 852 
     | 
    
         
            +
                    return "Mon Tue Wed Thu Fri Sat"
         
     | 
| 
      
 853 
     | 
    
         
            +
             
     | 
| 
      
 854 
     | 
    
         
            +
                def holidays_pre_1952(self):
         
     | 
| 
      
 855 
     | 
    
         
            +
                    """
         
     | 
| 
      
 856 
     | 
    
         
            +
                    NYSE Market open on Saturdays pre 5/24/1952.
         
     | 
| 
      
 857 
     | 
    
         
            +
                    CustomBusinessDay object that can be used inplace of holidays() for dates prior to crossover
         
     | 
| 
      
 858 
     | 
    
         
            +
             
     | 
| 
      
 859 
     | 
    
         
            +
                    :return: CustomBusinessDay object of holidays
         
     | 
| 
      
 860 
     | 
    
         
            +
                    """
         
     | 
| 
      
 861 
     | 
    
         
            +
                    if hasattr(self, "_holidays_hist"):
         
     | 
| 
      
 862 
     | 
    
         
            +
                        return self._holidays_hist
         
     | 
| 
      
 863 
     | 
    
         
            +
             
     | 
| 
      
 864 
     | 
    
         
            +
                    self._holidays_hist = CustomBusinessDay(
         
     | 
| 
      
 865 
     | 
    
         
            +
                        holidays=self.adhoc_holidays,
         
     | 
| 
      
 866 
     | 
    
         
            +
                        calendar=self.regular_holidays,
         
     | 
| 
      
 867 
     | 
    
         
            +
                        weekmask=self.weekmask_pre_1952,
         
     | 
| 
      
 868 
     | 
    
         
            +
                    )
         
     | 
| 
      
 869 
     | 
    
         
            +
                    return self._holidays_hist
         
     | 
| 
      
 870 
     | 
    
         
            +
             
     | 
| 
      
 871 
     | 
    
         
            +
                @property
         
     | 
| 
      
 872 
     | 
    
         
            +
                def regular_holidays(self):
         
     | 
| 
      
 873 
     | 
    
         
            +
                    return AbstractHolidayCalendar(
         
     | 
| 
      
 874 
     | 
    
         
            +
                        rules=[
         
     | 
| 
      
 875 
     | 
    
         
            +
                            USNewYearsDayNYSEpost1952,
         
     | 
| 
      
 876 
     | 
    
         
            +
                            USNewYearsDayNYSEpre1952,
         
     | 
| 
      
 877 
     | 
    
         
            +
                            USMartinLutherKingJrAfter1998,
         
     | 
| 
      
 878 
     | 
    
         
            +
                            USPresidentsDay,
         
     | 
| 
      
 879 
     | 
    
         
            +
                            USWashingtonsBirthDayBefore1952,
         
     | 
| 
      
 880 
     | 
    
         
            +
                            USWashingtonsBirthDay1952to1963,
         
     | 
| 
      
 881 
     | 
    
         
            +
                            USWashingtonsBirthDay1964to1970,
         
     | 
| 
      
 882 
     | 
    
         
            +
                            USLincolnsBirthDayBefore1954,
         
     | 
| 
      
 883 
     | 
    
         
            +
                            GoodFriday,
         
     | 
| 
      
 884 
     | 
    
         
            +
                            GoodFridayPre1898,
         
     | 
| 
      
 885 
     | 
    
         
            +
                            GoodFriday1899to1905,
         
     | 
| 
      
 886 
     | 
    
         
            +
                            USMemorialDay,
         
     | 
| 
      
 887 
     | 
    
         
            +
                            USMemorialDayBefore1952,
         
     | 
| 
      
 888 
     | 
    
         
            +
                            USMemorialDay1952to1964,
         
     | 
| 
      
 889 
     | 
    
         
            +
                            USMemorialDay1964to1969,
         
     | 
| 
      
 890 
     | 
    
         
            +
                            USIndependenceDay,
         
     | 
| 
      
 891 
     | 
    
         
            +
                            USIndependenceDayPre1952,
         
     | 
| 
      
 892 
     | 
    
         
            +
                            USIndependenceDay1952to1954,
         
     | 
| 
      
 893 
     | 
    
         
            +
                            USLaborDayStarting1887,
         
     | 
| 
      
 894 
     | 
    
         
            +
                            USColumbusDayBefore1954,
         
     | 
| 
      
 895 
     | 
    
         
            +
                            USElectionDay1848to1967,
         
     | 
| 
      
 896 
     | 
    
         
            +
                            USVeteransDay1934to1953,
         
     | 
| 
      
 897 
     | 
    
         
            +
                            USThanksgivingDay,
         
     | 
| 
      
 898 
     | 
    
         
            +
                            USThanksgivingDayBefore1939,
         
     | 
| 
      
 899 
     | 
    
         
            +
                            USThanksgivingDay1939to1941,
         
     | 
| 
      
 900 
     | 
    
         
            +
                            ChristmasNYSE,
         
     | 
| 
      
 901 
     | 
    
         
            +
                            Christmas54to98NYSE,
         
     | 
| 
      
 902 
     | 
    
         
            +
                            ChristmasBefore1954,
         
     | 
| 
      
 903 
     | 
    
         
            +
                            USJuneteenthAfter2022,
         
     | 
| 
      
 904 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 905 
     | 
    
         
            +
                    )
         
     | 
| 
      
 906 
     | 
    
         
            +
             
     | 
| 
      
 907 
     | 
    
         
            +
                @property
         
     | 
| 
      
 908 
     | 
    
         
            +
                def adhoc_holidays(self):
         
     | 
| 
      
 909 
     | 
    
         
            +
                    return list(
         
     | 
| 
      
 910 
     | 
    
         
            +
                        chain(
         
     | 
| 
      
 911 
     | 
    
         
            +
                            # Recurring Holidays
         
     | 
| 
      
 912 
     | 
    
         
            +
                            SatAfterGoodFridayAdhoc,
         
     | 
| 
      
 913 
     | 
    
         
            +
                            MonBeforeIndependenceDayAdhoc,
         
     | 
| 
      
 914 
     | 
    
         
            +
                            SatBeforeIndependenceDayAdhoc,
         
     | 
| 
      
 915 
     | 
    
         
            +
                            SatAfterIndependenceDayAdhoc,
         
     | 
| 
      
 916 
     | 
    
         
            +
                            DaysAfterIndependenceDayAdhoc,
         
     | 
| 
      
 917 
     | 
    
         
            +
                            SatBeforeLaborDayAdhoc,
         
     | 
| 
      
 918 
     | 
    
         
            +
                            USElectionDay1968to1980Adhoc,
         
     | 
| 
      
 919 
     | 
    
         
            +
                            FridayAfterThanksgivingAdHoc,
         
     | 
| 
      
 920 
     | 
    
         
            +
                            SatBeforeChristmasAdhoc,
         
     | 
| 
      
 921 
     | 
    
         
            +
                            SatAfterChristmasAdhoc,
         
     | 
| 
      
 922 
     | 
    
         
            +
                            ChristmasEvesAdhoc,
         
     | 
| 
      
 923 
     | 
    
         
            +
                            DayAfterChristmasAdhoc,
         
     | 
| 
      
 924 
     | 
    
         
            +
                            # Retired
         
     | 
| 
      
 925 
     | 
    
         
            +
                            USVetransDayAdHoc,
         
     | 
| 
      
 926 
     | 
    
         
            +
                            SatAfterColumbusDayAdHoc,
         
     | 
| 
      
 927 
     | 
    
         
            +
                            LincolnsBirthDayAdhoc,
         
     | 
| 
      
 928 
     | 
    
         
            +
                            GrantsBirthDayAdhoc,
         
     | 
| 
      
 929 
     | 
    
         
            +
                            SatBeforeNewYearsAdhoc,
         
     | 
| 
      
 930 
     | 
    
         
            +
                            SatBeforeWashingtonsBirthdayAdhoc,
         
     | 
| 
      
 931 
     | 
    
         
            +
                            SatAfterWashingtonsBirthdayAdhoc,
         
     | 
| 
      
 932 
     | 
    
         
            +
                            SatBeforeAfterLincolnsBirthdayAdhoc,
         
     | 
| 
      
 933 
     | 
    
         
            +
                            SatBeforeDecorationAdhoc,
         
     | 
| 
      
 934 
     | 
    
         
            +
                            SatAfterDecorationAdhoc,
         
     | 
| 
      
 935 
     | 
    
         
            +
                            DayBeforeDecorationAdhoc,
         
     | 
| 
      
 936 
     | 
    
         
            +
                            # Irregularities
         
     | 
| 
      
 937 
     | 
    
         
            +
                            UlyssesGrantFuneral1885,
         
     | 
| 
      
 938 
     | 
    
         
            +
                            ColumbianCelebration1892,
         
     | 
| 
      
 939 
     | 
    
         
            +
                            GreatBlizzardOf1888,
         
     | 
| 
      
 940 
     | 
    
         
            +
                            WashingtonInaugurationCentennialCelebration1889,
         
     | 
| 
      
 941 
     | 
    
         
            +
                            CharterDay1898,
         
     | 
| 
      
 942 
     | 
    
         
            +
                            WelcomeNavalCommander1898,
         
     | 
| 
      
 943 
     | 
    
         
            +
                            AdmiralDeweyCelebration1899,
         
     | 
| 
      
 944 
     | 
    
         
            +
                            GarretHobartFuneral1899,
         
     | 
| 
      
 945 
     | 
    
         
            +
                            QueenVictoriaFuneral1901,
         
     | 
| 
      
 946 
     | 
    
         
            +
                            MovedToProduceExchange1901,
         
     | 
| 
      
 947 
     | 
    
         
            +
                            EnlargedProduceExchange1901,
         
     | 
| 
      
 948 
     | 
    
         
            +
                            McKinleyDeathAndFuneral1901,
         
     | 
| 
      
 949 
     | 
    
         
            +
                            KingEdwardVIIcoronation1902,
         
     | 
| 
      
 950 
     | 
    
         
            +
                            NYSEnewBuildingOpen1903,
         
     | 
| 
      
 951 
     | 
    
         
            +
                            HudsonFultonCelebration1909,
         
     | 
| 
      
 952 
     | 
    
         
            +
                            JamesShermanFuneral1912,
         
     | 
| 
      
 953 
     | 
    
         
            +
                            OnsetOfWWI1914,
         
     | 
| 
      
 954 
     | 
    
         
            +
                            WeatherHeatClosing1917,
         
     | 
| 
      
 955 
     | 
    
         
            +
                            DraftRegistrationDay1917,
         
     | 
| 
      
 956 
     | 
    
         
            +
                            WeatherNoHeatClosing1918,
         
     | 
| 
      
 957 
     | 
    
         
            +
                            DraftRegistrationDay1918,
         
     | 
| 
      
 958 
     | 
    
         
            +
                            ArmisticeSigned1918,
         
     | 
| 
      
 959 
     | 
    
         
            +
                            Homecoming27Division1919,
         
     | 
| 
      
 960 
     | 
    
         
            +
                            ParadeOf77thDivision1919,
         
     | 
| 
      
 961 
     | 
    
         
            +
                            BacklogRelief1919,
         
     | 
| 
      
 962 
     | 
    
         
            +
                            GeneralPershingReturn1919,
         
     | 
| 
      
 963 
     | 
    
         
            +
                            OfficeLocationChange1920,
         
     | 
| 
      
 964 
     | 
    
         
            +
                            HardingDeath1923,
         
     | 
| 
      
 965 
     | 
    
         
            +
                            HardingFuneral1923,
         
     | 
| 
      
 966 
     | 
    
         
            +
                            LindberghParade1927,
         
     | 
| 
      
 967 
     | 
    
         
            +
                            BacklogRelief1928,
         
     | 
| 
      
 968 
     | 
    
         
            +
                            BacklogRelief1929,
         
     | 
| 
      
 969 
     | 
    
         
            +
                            CoolidgeFuneral1933,
         
     | 
| 
      
 970 
     | 
    
         
            +
                            BankHolidays1933,
         
     | 
| 
      
 971 
     | 
    
         
            +
                            HeavyVolume1933,
         
     | 
| 
      
 972 
     | 
    
         
            +
                            SatClosings1944,
         
     | 
| 
      
 973 
     | 
    
         
            +
                            RooseveltDayOfMourning1945,
         
     | 
| 
      
 974 
     | 
    
         
            +
                            SatClosings1945,
         
     | 
| 
      
 975 
     | 
    
         
            +
                            VJday1945,
         
     | 
| 
      
 976 
     | 
    
         
            +
                            NavyDay1945,
         
     | 
| 
      
 977 
     | 
    
         
            +
                            RailroadStrike1946,
         
     | 
| 
      
 978 
     | 
    
         
            +
                            SatClosings1946,
         
     | 
| 
      
 979 
     | 
    
         
            +
                            SatClosings1947,
         
     | 
| 
      
 980 
     | 
    
         
            +
                            SatClosings1948,
         
     | 
| 
      
 981 
     | 
    
         
            +
                            SevereWeather1948,
         
     | 
| 
      
 982 
     | 
    
         
            +
                            SatClosings1949,
         
     | 
| 
      
 983 
     | 
    
         
            +
                            SatClosings1950,
         
     | 
| 
      
 984 
     | 
    
         
            +
                            SatClosings1951,
         
     | 
| 
      
 985 
     | 
    
         
            +
                            SatClosings1952,
         
     | 
| 
      
 986 
     | 
    
         
            +
                            KennedyFuneral1963,
         
     | 
| 
      
 987 
     | 
    
         
            +
                            MLKdayOfMourning1968,
         
     | 
| 
      
 988 
     | 
    
         
            +
                            PaperworkCrisis1968,
         
     | 
| 
      
 989 
     | 
    
         
            +
                            SnowClosing1969,
         
     | 
| 
      
 990 
     | 
    
         
            +
                            EisenhowerFuneral1969,
         
     | 
| 
      
 991 
     | 
    
         
            +
                            FirstLunarLandingClosing1969,
         
     | 
| 
      
 992 
     | 
    
         
            +
                            TrumanFuneral1972,
         
     | 
| 
      
 993 
     | 
    
         
            +
                            JohnsonFuneral1973,
         
     | 
| 
      
 994 
     | 
    
         
            +
                            NewYorkCityBlackout77,
         
     | 
| 
      
 995 
     | 
    
         
            +
                            HurricaneGloriaClosings1985,
         
     | 
| 
      
 996 
     | 
    
         
            +
                            NixonFuneral1994,
         
     | 
| 
      
 997 
     | 
    
         
            +
                            ReaganMourning2004,
         
     | 
| 
      
 998 
     | 
    
         
            +
                            FordMourning2007,
         
     | 
| 
      
 999 
     | 
    
         
            +
                            September11Closings2001,
         
     | 
| 
      
 1000 
     | 
    
         
            +
                            HurricaneSandyClosings2012,
         
     | 
| 
      
 1001 
     | 
    
         
            +
                            GeorgeHWBushDeath2018,
         
     | 
| 
      
 1002 
     | 
    
         
            +
                            JimmyCarterDeath2025,
         
     | 
| 
      
 1003 
     | 
    
         
            +
                        )
         
     | 
| 
      
 1004 
     | 
    
         
            +
                    )
         
     | 
| 
      
 1005 
     | 
    
         
            +
             
     | 
| 
      
 1006 
     | 
    
         
            +
                @property
         
     | 
| 
      
 1007 
     | 
    
         
            +
                def special_closes(self):
         
     | 
| 
      
 1008 
     | 
    
         
            +
                    return [
         
     | 
| 
      
 1009 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1010 
     | 
    
         
            +
                            time(11, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1011 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1012 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1013 
     | 
    
         
            +
                                    KingEdwardDeath11amyClose1910,
         
     | 
| 
      
 1014 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1015 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1016 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1017 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1018 
     | 
    
         
            +
                            time(12, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1019 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1020 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1021 
     | 
    
         
            +
                                    ParadeOfNationalGuardEarlyClose1917,
         
     | 
| 
      
 1022 
     | 
    
         
            +
                                    LibertyDay12pmEarlyClose1917,
         
     | 
| 
      
 1023 
     | 
    
         
            +
                                    LibertyDay12pmEarlyClose1918,
         
     | 
| 
      
 1024 
     | 
    
         
            +
                                    WallStreetExplosionEarlyClose1920,
         
     | 
| 
      
 1025 
     | 
    
         
            +
                                    NRAdemonstration12pmEarlyClose1933,
         
     | 
| 
      
 1026 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1027 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1028 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1029 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1030 
     | 
    
         
            +
                            time(hour=12, minute=30, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1031 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1032 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1033 
     | 
    
         
            +
                                    RooseveltFuneral1230EarlyClose1919,
         
     | 
| 
      
 1034 
     | 
    
         
            +
                                    WoodrowWilsonFuneral1230EarlyClose1924,
         
     | 
| 
      
 1035 
     | 
    
         
            +
                                    TaftFuneral1230EarlyClose1930,
         
     | 
| 
      
 1036 
     | 
    
         
            +
                                    GasFumesOnTradingFloor1230EarlyClose1933,
         
     | 
| 
      
 1037 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1038 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1039 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1040 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1041 
     | 
    
         
            +
                            time(13, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1042 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1043 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1044 
     | 
    
         
            +
                                    FridayAfterIndependenceDayNYSEpre2013,
         
     | 
| 
      
 1045 
     | 
    
         
            +
                                    MonTuesThursBeforeIndependenceDay,
         
     | 
| 
      
 1046 
     | 
    
         
            +
                                    WednesdayBeforeIndependenceDayPost2013,
         
     | 
| 
      
 1047 
     | 
    
         
            +
                                    DayAfterThanksgiving1pmEarlyCloseInOrAfter1993,
         
     | 
| 
      
 1048 
     | 
    
         
            +
                                    ChristmasEvePost1999Early1pmClose,
         
     | 
| 
      
 1049 
     | 
    
         
            +
                                    GroverClevelandFuneral1pmClose1908,
         
     | 
| 
      
 1050 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1051 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1052 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1053 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1054 
     | 
    
         
            +
                            time(14, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1055 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1056 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1057 
     | 
    
         
            +
                                    DayAfterThanksgiving2pmEarlyCloseBefore1993,
         
     | 
| 
      
 1058 
     | 
    
         
            +
                                    HooverFuneral1400EarlyClose1964,
         
     | 
| 
      
 1059 
     | 
    
         
            +
                                    Snow2pmEarlyClose1967,
         
     | 
| 
      
 1060 
     | 
    
         
            +
                                    Snow2pmEarlyClose1978,
         
     | 
| 
      
 1061 
     | 
    
         
            +
                                    Snow2pmEarlyClose1996,
         
     | 
| 
      
 1062 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1063 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1064 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1065 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1066 
     | 
    
         
            +
                            time(14, 7, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1067 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1068 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1069 
     | 
    
         
            +
                                    KennedyAssassination1407EarlyClose,
         
     | 
| 
      
 1070 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1071 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1072 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1073 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1074 
     | 
    
         
            +
                            time(hour=14, minute=30, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1075 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1076 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1077 
     | 
    
         
            +
                                    FalseArmisticeReport1430EarlyClose1918,
         
     | 
| 
      
 1078 
     | 
    
         
            +
                                    CromwellFuneral1430EarlyClose1925,
         
     | 
| 
      
 1079 
     | 
    
         
            +
                                    Snow230EarlyClose1975,
         
     | 
| 
      
 1080 
     | 
    
         
            +
                                    Snow230pmEarlyClose1994,
         
     | 
| 
      
 1081 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1082 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1083 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1084 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1085 
     | 
    
         
            +
                            time(15, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1086 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1087 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1088 
     | 
    
         
            +
                                    HurricaneWatch3pmEarlyClose1976,
         
     | 
| 
      
 1089 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1090 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1091 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1092 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1093 
     | 
    
         
            +
                            time(15, 17, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1094 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1095 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1096 
     | 
    
         
            +
                                    ReaganAssassAttempt317pmEarlyClose1981,
         
     | 
| 
      
 1097 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1098 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1099 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1100 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1101 
     | 
    
         
            +
                            time(15, 28, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1102 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1103 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1104 
     | 
    
         
            +
                                    ConEdPowerFail328pmEarlyClose1981,
         
     | 
| 
      
 1105 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1106 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1107 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1108 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1109 
     | 
    
         
            +
                            time(15, 30, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1110 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1111 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1112 
     | 
    
         
            +
                                    CircuitBreakerTriggered330pmEarlyClose1997,
         
     | 
| 
      
 1113 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1114 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1115 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1116 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1117 
     | 
    
         
            +
                            time(15, 56, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1118 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1119 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1120 
     | 
    
         
            +
                                    SystemProb356pmEarlyClose2005,
         
     | 
| 
      
 1121 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1122 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1123 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1124 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 1125 
     | 
    
         
            +
             
     | 
| 
      
 1126 
     | 
    
         
            +
                @property
         
     | 
| 
      
 1127 
     | 
    
         
            +
                def special_closes_adhoc(self):
         
     | 
| 
      
 1128 
     | 
    
         
            +
                    def _union_many(indexes):
         
     | 
| 
      
 1129 
     | 
    
         
            +
                        # Merges a list of pd.DatetimeIndex objects, returns merged DatetimeIndex
         
     | 
| 
      
 1130 
     | 
    
         
            +
                        union_index = pd.DatetimeIndex([], tz="UTC")
         
     | 
| 
      
 1131 
     | 
    
         
            +
                        for index in indexes:
         
     | 
| 
      
 1132 
     | 
    
         
            +
                            union_index = union_index.union(index)
         
     | 
| 
      
 1133 
     | 
    
         
            +
                        return union_index
         
     | 
| 
      
 1134 
     | 
    
         
            +
             
     | 
| 
      
 1135 
     | 
    
         
            +
                    return [
         
     | 
| 
      
 1136 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1137 
     | 
    
         
            +
                            time(13, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1138 
     | 
    
         
            +
                            # DaysBeforeIndependenceDay1pmEarlyCloseAdhoc # list
         
     | 
| 
      
 1139 
     | 
    
         
            +
                            ChristmasEve1pmEarlyCloseAdhoc + DayAfterChristmas1pmEarlyCloseAdhoc + BacklogRelief1pmEarlyClose1929,
         
     | 
| 
      
 1140 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1141 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1142 
     | 
    
         
            +
                            time(14, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1143 
     | 
    
         
            +
                            _union_many(
         
     | 
| 
      
 1144 
     | 
    
         
            +
                                [pd.DatetimeIndex(ChristmasEve2pmEarlyCloseAdhoc + HeavyVolume2pmEarlyClose1933)]
         
     | 
| 
      
 1145 
     | 
    
         
            +
                                + [
         
     | 
| 
      
 1146 
     | 
    
         
            +
                                    BacklogRelief2pmEarlyClose1928,
         
     | 
| 
      
 1147 
     | 
    
         
            +
                                    TransitStrike2pmEarlyClose1966,  # index
         
     | 
| 
      
 1148 
     | 
    
         
            +
                                    Backlog2pmEarlyCloses1967,  # index
         
     | 
| 
      
 1149 
     | 
    
         
            +
                                    Backlog2pmEarlyCloses1968,  # index
         
     | 
| 
      
 1150 
     | 
    
         
            +
                                    PaperworkCrisis2pmEarlyCloses1969,  # index
         
     | 
| 
      
 1151 
     | 
    
         
            +
                                    Backlog2pmEarlyCloses1987,
         
     | 
| 
      
 1152 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1153 
     | 
    
         
            +
                            ),  # index
         
     | 
| 
      
 1154 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1155 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1156 
     | 
    
         
            +
                            time(14, 30, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1157 
     | 
    
         
            +
                            _union_many([PaperworkCrisis230pmEarlyCloses1969, Backlog230pmEarlyCloses1987]),  # index
         
     | 
| 
      
 1158 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1159 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1160 
     | 
    
         
            +
                            time(15, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1161 
     | 
    
         
            +
                            _union_many([PaperworkCrisis3pmEarlyCloses1969to1970, Backlog3pmEarlyCloses1987]),  # index
         
     | 
| 
      
 1162 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1163 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1164 
     | 
    
         
            +
                            time(15, 30, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1165 
     | 
    
         
            +
                            Backlog330pmEarlyCloses1987,  # index
         
     | 
| 
      
 1166 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1167 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 1168 
     | 
    
         
            +
             
     | 
| 
      
 1169 
     | 
    
         
            +
                @property
         
     | 
| 
      
 1170 
     | 
    
         
            +
                def special_opens(self):
         
     | 
| 
      
 1171 
     | 
    
         
            +
                    return [
         
     | 
| 
      
 1172 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1173 
     | 
    
         
            +
                            time(hour=9, minute=31, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1174 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1175 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1176 
     | 
    
         
            +
                                    ConEdXformer931amLateOpen1990,
         
     | 
| 
      
 1177 
     | 
    
         
            +
                                    EnduringFreedomMomentSilence931amLateOpen2001,
         
     | 
| 
      
 1178 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1179 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1180 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1181 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1182 
     | 
    
         
            +
                            time(hour=9, minute=32, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1183 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1184 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1185 
     | 
    
         
            +
                                    IraqiFreedom932amLateOpen2003,
         
     | 
| 
      
 1186 
     | 
    
         
            +
                                    ReaganMomentSilence932amLateOpen2004,
         
     | 
| 
      
 1187 
     | 
    
         
            +
                                    FordMomentSilence932amLateOpen2006,
         
     | 
| 
      
 1188 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1189 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1190 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1191 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1192 
     | 
    
         
            +
                            time(hour=9, minute=33, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1193 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1194 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1195 
     | 
    
         
            +
                                    Sept11MomentSilence933amLateOpen2001,
         
     | 
| 
      
 1196 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1197 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1198 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1199 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1200 
     | 
    
         
            +
                            time(hour=10, minute=15, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1201 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1202 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1203 
     | 
    
         
            +
                                    Snow1015LateOpen1967,
         
     | 
| 
      
 1204 
     | 
    
         
            +
                                    MerrillLynchComputer1015LateOpen1974,
         
     | 
| 
      
 1205 
     | 
    
         
            +
                                    FireDrill1015LateOpen1974,
         
     | 
| 
      
 1206 
     | 
    
         
            +
                                    FireDrill1015LateOpen1976,
         
     | 
| 
      
 1207 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1208 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1209 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1210 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1211 
     | 
    
         
            +
                            time(hour=10, minute=30, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1212 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1213 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1214 
     | 
    
         
            +
                                    TrafficBlockLateOpen1919,
         
     | 
| 
      
 1215 
     | 
    
         
            +
                                    TrafficBlockLateOpen1920,
         
     | 
| 
      
 1216 
     | 
    
         
            +
                                    Computer1030LateOpen1995,
         
     | 
| 
      
 1217 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1218 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1219 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1220 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1221 
     | 
    
         
            +
                            time(hour=10, minute=45, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1222 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1223 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1224 
     | 
    
         
            +
                                    EclipseOfSunLateOpen1925,
         
     | 
| 
      
 1225 
     | 
    
         
            +
                                    Storm1045LateOpen1969,
         
     | 
| 
      
 1226 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1227 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1228 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1229 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1230 
     | 
    
         
            +
                            time(11, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1231 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1232 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1233 
     | 
    
         
            +
                                    Snow11amLateOpen1934,
         
     | 
| 
      
 1234 
     | 
    
         
            +
                                    KingGeorgeVFuneral11amLateOpen1936,
         
     | 
| 
      
 1235 
     | 
    
         
            +
                                    Snow11amLateOpening1960,
         
     | 
| 
      
 1236 
     | 
    
         
            +
                                    Snow11amLateOpen1969,
         
     | 
| 
      
 1237 
     | 
    
         
            +
                                    Ice11amLateOpen1973,
         
     | 
| 
      
 1238 
     | 
    
         
            +
                                    Snow11amLateOpen1978,
         
     | 
| 
      
 1239 
     | 
    
         
            +
                                    Fire11amLateOpen1989,
         
     | 
| 
      
 1240 
     | 
    
         
            +
                                    Snow11amLateOpen1996,
         
     | 
| 
      
 1241 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1242 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1243 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1244 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1245 
     | 
    
         
            +
                            time(11, 5, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1246 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1247 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1248 
     | 
    
         
            +
                                    PowerFail1105LateOpen,
         
     | 
| 
      
 1249 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1250 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1251 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1252 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1253 
     | 
    
         
            +
                            time(11, 15, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1254 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1255 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1256 
     | 
    
         
            +
                                    Storm1115LateOpen1976,
         
     | 
| 
      
 1257 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1258 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1259 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1260 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1261 
     | 
    
         
            +
                            time(12, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1262 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1263 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1264 
     | 
    
         
            +
                                    KingEdwardFuneral12pmOpen1910,
         
     | 
| 
      
 1265 
     | 
    
         
            +
                                    JPMorganFuneral12pmOpen1913,
         
     | 
| 
      
 1266 
     | 
    
         
            +
                                    WilliamGaynorFuneral12pmOpen1913,
         
     | 
| 
      
 1267 
     | 
    
         
            +
                                    Snow12pmLateOpen1978,
         
     | 
| 
      
 1268 
     | 
    
         
            +
                                    Sept11Anniversary12pmLateOpen2002,
         
     | 
| 
      
 1269 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1270 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1271 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1272 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1273 
     | 
    
         
            +
                            time(13, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1274 
     | 
    
         
            +
                            AbstractHolidayCalendar(
         
     | 
| 
      
 1275 
     | 
    
         
            +
                                rules=[
         
     | 
| 
      
 1276 
     | 
    
         
            +
                                    AnnunciatorBoardFire1pmLateOpen1921,
         
     | 
| 
      
 1277 
     | 
    
         
            +
                                ]
         
     | 
| 
      
 1278 
     | 
    
         
            +
                            ),
         
     | 
| 
      
 1279 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1280 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 1281 
     | 
    
         
            +
             
     | 
| 
      
 1282 
     | 
    
         
            +
                @property
         
     | 
| 
      
 1283 
     | 
    
         
            +
                def special_opens_adhoc(self):
         
     | 
| 
      
 1284 
     | 
    
         
            +
                    return [
         
     | 
| 
      
 1285 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1286 
     | 
    
         
            +
                            time(9, 31, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1287 
     | 
    
         
            +
                            TroopsInGulf931LateOpens1991,
         
     | 
| 
      
 1288 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1289 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1290 
     | 
    
         
            +
                            time(11, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1291 
     | 
    
         
            +
                            HeavyVolume11amLateOpen1933,
         
     | 
| 
      
 1292 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1293 
     | 
    
         
            +
                        (
         
     | 
| 
      
 1294 
     | 
    
         
            +
                            time(12, tzinfo=ZoneInfo("America/New_York")),
         
     | 
| 
      
 1295 
     | 
    
         
            +
                            BacklogRelief12pmLateOpen1929 + HeavyVolume12pmLateOpen1933,
         
     | 
| 
      
 1296 
     | 
    
         
            +
                        ),
         
     | 
| 
      
 1297 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 1298 
     | 
    
         
            +
             
     | 
| 
      
 1299 
     | 
    
         
            +
                # Override market_calendar.py to split calc between pre & post 1952 Saturday Close
         
     | 
| 
      
 1300 
     | 
    
         
            +
                def valid_days(self, start_date, end_date, tz="UTC"):
         
     | 
| 
      
 1301 
     | 
    
         
            +
                    """
         
     | 
| 
      
 1302 
     | 
    
         
            +
                    Get a DatetimeIndex of valid open business days.
         
     | 
| 
      
 1303 
     | 
    
         
            +
             
     | 
| 
      
 1304 
     | 
    
         
            +
                    :param start_date: start date
         
     | 
| 
      
 1305 
     | 
    
         
            +
                    :param end_date: end date
         
     | 
| 
      
 1306 
     | 
    
         
            +
                    :param tz: time zone in either string or pytz.timezone
         
     | 
| 
      
 1307 
     | 
    
         
            +
                    :return: DatetimeIndex of valid business days
         
     | 
| 
      
 1308 
     | 
    
         
            +
                    """
         
     | 
| 
      
 1309 
     | 
    
         
            +
                    start_date = pd.Timestamp(start_date)
         
     | 
| 
      
 1310 
     | 
    
         
            +
                    end_date = pd.Timestamp(end_date)
         
     | 
| 
      
 1311 
     | 
    
         
            +
                    start_date = start_date.tz_convert(tz) if start_date.tz else start_date.tz_localize(tz)
         
     | 
| 
      
 1312 
     | 
    
         
            +
                    end_date = end_date.tz_convert(tz) if end_date.tz else end_date.tz_localize(tz)
         
     | 
| 
      
 1313 
     | 
    
         
            +
             
     | 
| 
      
 1314 
     | 
    
         
            +
                    # Starting Monday Sept. 29, 1952, no more saturday trading days
         
     | 
| 
      
 1315 
     | 
    
         
            +
                    if tz is None:
         
     | 
| 
      
 1316 
     | 
    
         
            +
                        saturday_end = self._saturday_end.tz_localize(None)
         
     | 
| 
      
 1317 
     | 
    
         
            +
                    else:
         
     | 
| 
      
 1318 
     | 
    
         
            +
                        saturday_end = self._saturday_end
         
     | 
| 
      
 1319 
     | 
    
         
            +
             
     | 
| 
      
 1320 
     | 
    
         
            +
                    # Don't care about Saturdays. Call super.
         
     | 
| 
      
 1321 
     | 
    
         
            +
                    if start_date > saturday_end:
         
     | 
| 
      
 1322 
     | 
    
         
            +
                        return super().valid_days(start_date, end_date, tz=tz)
         
     | 
| 
      
 1323 
     | 
    
         
            +
             
     | 
| 
      
 1324 
     | 
    
         
            +
                    # Full Date Range is pre 1952. Augment the Super call
         
     | 
| 
      
 1325 
     | 
    
         
            +
                    if end_date <= saturday_end:
         
     | 
| 
      
 1326 
     | 
    
         
            +
                        return pd.date_range(
         
     | 
| 
      
 1327 
     | 
    
         
            +
                            start_date,
         
     | 
| 
      
 1328 
     | 
    
         
            +
                            end_date,
         
     | 
| 
      
 1329 
     | 
    
         
            +
                            freq=self.holidays_pre_1952(),
         
     | 
| 
      
 1330 
     | 
    
         
            +
                            normalize=True,
         
     | 
| 
      
 1331 
     | 
    
         
            +
                            tz=tz,
         
     | 
| 
      
 1332 
     | 
    
         
            +
                        )
         
     | 
| 
      
 1333 
     | 
    
         
            +
             
     | 
| 
      
 1334 
     | 
    
         
            +
                    # Range is split across 1952. Concatenate Two different Date_Range calls
         
     | 
| 
      
 1335 
     | 
    
         
            +
                    days_pre = pd.date_range(
         
     | 
| 
      
 1336 
     | 
    
         
            +
                        start_date,
         
     | 
| 
      
 1337 
     | 
    
         
            +
                        saturday_end,
         
     | 
| 
      
 1338 
     | 
    
         
            +
                        freq=self.holidays_pre_1952(),
         
     | 
| 
      
 1339 
     | 
    
         
            +
                        normalize=True,
         
     | 
| 
      
 1340 
     | 
    
         
            +
                        tz=tz,
         
     | 
| 
      
 1341 
     | 
    
         
            +
                    )
         
     | 
| 
      
 1342 
     | 
    
         
            +
                    days_post = pd.date_range(saturday_end, end_date, freq=self.holidays(), normalize=True, tz=tz)
         
     | 
| 
      
 1343 
     | 
    
         
            +
                    return days_pre.union(days_post)
         
     | 
| 
      
 1344 
     | 
    
         
            +
             
     | 
| 
      
 1345 
     | 
    
         
            +
                def days_at_time(self, days, market_time, day_offset=0):
         
     | 
| 
      
 1346 
     | 
    
         
            +
                    days = super().days_at_time(days, market_time, day_offset=day_offset)
         
     | 
| 
      
 1347 
     | 
    
         
            +
             
     | 
| 
      
 1348 
     | 
    
         
            +
                    if market_time == "market_close" and not self.is_custom(market_time):
         
     | 
| 
      
 1349 
     | 
    
         
            +
                        days = days.dt.tz_convert(self.tz)
         
     | 
| 
      
 1350 
     | 
    
         
            +
                        days = days.where(
         
     | 
| 
      
 1351 
     | 
    
         
            +
                            days.dt.weekday != 5,
         
     | 
| 
      
 1352 
     | 
    
         
            +
                            days.dt.normalize() + self._tdelta(self._saturday_close),
         
     | 
| 
      
 1353 
     | 
    
         
            +
                        )
         
     | 
| 
      
 1354 
     | 
    
         
            +
                        days = days.dt.tz_convert("UTC")
         
     | 
| 
      
 1355 
     | 
    
         
            +
                    return days
         
     | 
| 
      
 1356 
     | 
    
         
            +
             
     | 
| 
      
 1357 
     | 
    
         
            +
                def date_range_htf(
         
     | 
| 
      
 1358 
     | 
    
         
            +
                    self,
         
     | 
| 
      
 1359 
     | 
    
         
            +
                    frequency: Union[str, pd.Timedelta, int, float],
         
     | 
| 
      
 1360 
     | 
    
         
            +
                    start: Union[str, pd.Timestamp, int, float, None] = None,
         
     | 
| 
      
 1361 
     | 
    
         
            +
                    end: Union[str, pd.Timestamp, int, float, None] = None,
         
     | 
| 
      
 1362 
     | 
    
         
            +
                    periods: Union[int, None] = None,
         
     | 
| 
      
 1363 
     | 
    
         
            +
                    closed: Union[Literal["left", "right"], None] = "right",
         
     | 
| 
      
 1364 
     | 
    
         
            +
                    *,
         
     | 
| 
      
 1365 
     | 
    
         
            +
                    day_anchor: u.Day_Anchor = "SUN",
         
     | 
| 
      
 1366 
     | 
    
         
            +
                    month_anchor: u.Month_Anchor = "JAN",
         
     | 
| 
      
 1367 
     | 
    
         
            +
                ) -> pd.DatetimeIndex:
         
     | 
| 
      
 1368 
     | 
    
         
            +
                    # __doc__ = MarketCalendar.date_range_htf.__doc__
         
     | 
| 
      
 1369 
     | 
    
         
            +
             
     | 
| 
      
 1370 
     | 
    
         
            +
                    start, end, periods = u._error_check_htf_range(start, end, periods)
         
     | 
| 
      
 1371 
     | 
    
         
            +
             
     | 
| 
      
 1372 
     | 
    
         
            +
                    args = {
         
     | 
| 
      
 1373 
     | 
    
         
            +
                        "frequency": frequency,
         
     | 
| 
      
 1374 
     | 
    
         
            +
                        "start": start,
         
     | 
| 
      
 1375 
     | 
    
         
            +
                        "end": end,
         
     | 
| 
      
 1376 
     | 
    
         
            +
                        "periods": periods,
         
     | 
| 
      
 1377 
     | 
    
         
            +
                        "closed": closed,
         
     | 
| 
      
 1378 
     | 
    
         
            +
                        "day_anchor": day_anchor,
         
     | 
| 
      
 1379 
     | 
    
         
            +
                        "month_anchor": month_anchor,
         
     | 
| 
      
 1380 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1381 
     | 
    
         
            +
             
     | 
| 
      
 1382 
     | 
    
         
            +
                    saturday_end = self._saturday_end.tz_localize(None)
         
     | 
| 
      
 1383 
     | 
    
         
            +
             
     | 
| 
      
 1384 
     | 
    
         
            +
                    # All Dates post 1952 This is the most common use case so return it first
         
     | 
| 
      
 1385 
     | 
    
         
            +
                    if start is not None and start > saturday_end:
         
     | 
| 
      
 1386 
     | 
    
         
            +
                        return u.date_range_htf(self.holidays(), **args)
         
     | 
| 
      
 1387 
     | 
    
         
            +
             
     | 
| 
      
 1388 
     | 
    
         
            +
                    # ---- Start-Date to End-Date w/ pre-1952 ----
         
     | 
| 
      
 1389 
     | 
    
         
            +
                    if start is not None and end is not None:
         
     | 
| 
      
 1390 
     | 
    
         
            +
                        if end <= saturday_end:
         
     | 
| 
      
 1391 
     | 
    
         
            +
                            # All pre 1952 Dates
         
     | 
| 
      
 1392 
     | 
    
         
            +
                            return u.date_range_htf(self.holidays_pre_1952(), **args)
         
     | 
| 
      
 1393 
     | 
    
         
            +
                        else:
         
     | 
| 
      
 1394 
     | 
    
         
            +
                            # Split Range Across 1952
         
     | 
| 
      
 1395 
     | 
    
         
            +
                            pre = u.date_range_htf(  # Only Generate to the last saturday
         
     | 
| 
      
 1396 
     | 
    
         
            +
                                self.holidays_pre_1952(), **(args | {"end": saturday_end})
         
     | 
| 
      
 1397 
     | 
    
         
            +
                            )
         
     | 
| 
      
 1398 
     | 
    
         
            +
                            post = u.date_range_htf(  # start generating from the last date of 'pre'
         
     | 
| 
      
 1399 
     | 
    
         
            +
                                self.holidays(), **(args | {"start": pre[-1]})
         
     | 
| 
      
 1400 
     | 
    
         
            +
                            )
         
     | 
| 
      
 1401 
     | 
    
         
            +
                            return pd.DatetimeIndex(pre.union(post), dtype="datetime64[ns]")
         
     | 
| 
      
 1402 
     | 
    
         
            +
             
     | 
| 
      
 1403 
     | 
    
         
            +
                    # ---- Periods from Start-Date w/ pre-1952 ----
         
     | 
| 
      
 1404 
     | 
    
         
            +
                    elif start is not None and periods is not None:
         
     | 
| 
      
 1405 
     | 
    
         
            +
                        # Start prior to 1952 & Number of periods given
         
     | 
| 
      
 1406 
     | 
    
         
            +
                        rtn_dt = u.date_range_htf(self.holidays_pre_1952(), **args)
         
     | 
| 
      
 1407 
     | 
    
         
            +
                        if rtn_dt[-1] <= saturday_end:
         
     | 
| 
      
 1408 
     | 
    
         
            +
                            return rtn_dt  # never passed 1952, good to return
         
     | 
| 
      
 1409 
     | 
    
         
            +
             
     | 
| 
      
 1410 
     | 
    
         
            +
                        # Date Range Split.
         
     | 
| 
      
 1411 
     | 
    
         
            +
                        pre = rtn_dt[rtn_dt <= saturday_end]
         
     | 
| 
      
 1412 
     | 
    
         
            +
                        post = u.date_range_htf(
         
     | 
| 
      
 1413 
     | 
    
         
            +
                            self.holidays(),
         
     | 
| 
      
 1414 
     | 
    
         
            +
                            **(args | {"start": pre[-1], "periods": periods - len(pre) + 1}),
         
     | 
| 
      
 1415 
     | 
    
         
            +
                        )
         
     | 
| 
      
 1416 
     | 
    
         
            +
                        return pd.DatetimeIndex(pre.union(post)[:periods], dtype="datetime64[ns]")
         
     | 
| 
      
 1417 
     | 
    
         
            +
             
     | 
| 
      
 1418 
     | 
    
         
            +
                    # ---- Periods from End-Date ----
         
     | 
| 
      
 1419 
     | 
    
         
            +
                    elif end is not None and periods is not None:
         
     | 
| 
      
 1420 
     | 
    
         
            +
                        if end <= saturday_end:
         
     | 
| 
      
 1421 
     | 
    
         
            +
                            # All Dates pre-1952, Good to return the normal call
         
     | 
| 
      
 1422 
     | 
    
         
            +
                            return u.date_range_htf(self.holidays_pre_1952(), **args)
         
     | 
| 
      
 1423 
     | 
    
         
            +
                        else:
         
     | 
| 
      
 1424 
     | 
    
         
            +
                            rtn_dt = u.date_range_htf(self.holidays(), **args)
         
     | 
| 
      
 1425 
     | 
    
         
            +
             
     | 
| 
      
 1426 
     | 
    
         
            +
                            if rtn_dt[0] > saturday_end:
         
     | 
| 
      
 1427 
     | 
    
         
            +
                                return rtn_dt  # never passed 1952, good to return
         
     | 
| 
      
 1428 
     | 
    
         
            +
             
     | 
| 
      
 1429 
     | 
    
         
            +
                            # Date Range Split
         
     | 
| 
      
 1430 
     | 
    
         
            +
                            post = rtn_dt[rtn_dt > saturday_end]
         
     | 
| 
      
 1431 
     | 
    
         
            +
                            _, period_code = u._standardize_htf_freq(frequency)
         
     | 
| 
      
 1432 
     | 
    
         
            +
                            altered_args = {
         
     | 
| 
      
 1433 
     | 
    
         
            +
                                # This nonsense is to realign the schedules as best as possible. This
         
     | 
| 
      
 1434 
     | 
    
         
            +
                                # essentially creates the 'pre-1952' equivalent date to the last generated 'post-1952'
         
     | 
| 
      
 1435 
     | 
    
         
            +
                                # date. Start the Range from there, then pre[0:-1] trims off that extra date where we
         
     | 
| 
      
 1436 
     | 
    
         
            +
                                # started from
         
     | 
| 
      
 1437 
     | 
    
         
            +
                                "end": post[0].to_period(period_code).end_time.normalize(),
         
     | 
| 
      
 1438 
     | 
    
         
            +
                                "periods": periods - len(post) + 2,
         
     | 
| 
      
 1439 
     | 
    
         
            +
                            }
         
     | 
| 
      
 1440 
     | 
    
         
            +
                            pre = u.date_range_htf(
         
     | 
| 
      
 1441 
     | 
    
         
            +
                                self.holidays_pre_1952(),
         
     | 
| 
      
 1442 
     | 
    
         
            +
                                **(args | altered_args),
         
     | 
| 
      
 1443 
     | 
    
         
            +
                            )
         
     | 
| 
      
 1444 
     | 
    
         
            +
             
     | 
| 
      
 1445 
     | 
    
         
            +
                            return pd.DatetimeIndex(pre[:-1].union(post)[-periods:], dtype="datetime64[ns]")
         
     | 
| 
      
 1446 
     | 
    
         
            +
                    else:
         
     | 
| 
      
 1447 
     | 
    
         
            +
                        _, _ = u._standardize_htf_freq(frequency)
         
     | 
| 
      
 1448 
     | 
    
         
            +
                        raise ValueError("This should never be raised, the above call should error first")
         
     | 
| 
      
 1449 
     | 
    
         
            +
             
     | 
| 
      
 1450 
     | 
    
         
            +
                def early_closes(self, schedule):
         
     | 
| 
      
 1451 
     | 
    
         
            +
                    """
         
     | 
| 
      
 1452 
     | 
    
         
            +
                    Get a DataFrame of the dates that are an early close.
         
     | 
| 
      
 1453 
     | 
    
         
            +
             
     | 
| 
      
 1454 
     | 
    
         
            +
                    :param schedule: schedule DataFrame
         
     | 
| 
      
 1455 
     | 
    
         
            +
                    :return: schedule DataFrame with rows that are early closes
         
     | 
| 
      
 1456 
     | 
    
         
            +
                    """
         
     | 
| 
      
 1457 
     | 
    
         
            +
                    early = super().early_closes(schedule)
         
     | 
| 
      
 1458 
     | 
    
         
            +
             
     | 
| 
      
 1459 
     | 
    
         
            +
                    # make sure saturdays are not considered early closes if they are >= 12pm
         
     | 
| 
      
 1460 
     | 
    
         
            +
                    mc = early.market_close.dt.tz_convert(self.tz)
         
     | 
| 
      
 1461 
     | 
    
         
            +
                    after_noon = (mc - mc.dt.normalize()).ge(self._tdelta(self._saturday_close))
         
     | 
| 
      
 1462 
     | 
    
         
            +
                    return early[~(mc.dt.weekday.eq(5) & after_noon)]
         
     |