@@ -80,7 +80,7 @@ def parse_yahoo_historical_ochl(fh, adjusted=True, asobject=False):
8080 Parameters
8181 ----------
8282
83- adjusted : ` bool`
83+ adjusted : bool
8484 If True (default) replace open, close, high, low prices with
8585 their adjusted values. The adjustment is by a scale factor, S =
8686 adjusted_close/close. Adjusted prices are actual prices
@@ -92,7 +92,7 @@ def parse_yahoo_historical_ochl(fh, adjusted=True, asobject=False):
9292 = True|False.
9393
9494
95- asobject : ` bool` or :class:` None`
95+ asobject : bool or None
9696 If False (default for compatibility with earlier versions)
9797 return a list of tuples containing
9898
@@ -126,7 +126,7 @@ def parse_yahoo_historical_ohlc(fh, adjusted=True, asobject=False):
126126 Parameters
127127 ----------
128128
129- adjusted : ` bool`
129+ adjusted : bool
130130 If True (default) replace open, high, low, close prices with
131131 their adjusted values. The adjustment is by a scale factor, S =
132132 adjusted_close/close. Adjusted prices are actual prices
@@ -138,7 +138,7 @@ def parse_yahoo_historical_ohlc(fh, adjusted=True, asobject=False):
138138 = True|False.
139139
140140
141- asobject : ` bool` or :class:` None`
141+ asobject : bool or None
142142 If False (default for compatibility with earlier versions)
143143 return a list of tuples containing
144144
@@ -178,7 +178,7 @@ def parse_yahoo_historical(fh, adjusted=True, asobject=False):
178178 Parameters
179179 ----------
180180
181- adjusted : ` bool`
181+ adjusted : bool
182182 If True (default) replace open, close, high, low prices with
183183 their adjusted values. The adjustment is by a scale factor, S =
184184 adjusted_close/close. Adjusted prices are actual prices
@@ -190,7 +190,7 @@ def parse_yahoo_historical(fh, adjusted=True, asobject=False):
190190 = True|False.
191191
192192
193- asobject : ` bool` or :class:` None`
193+ asobject : bool or None
194194 If False (default for compatibility with earlier versions)
195195 return a list of tuples containing
196196
@@ -213,7 +213,7 @@ def parse_yahoo_historical(fh, adjusted=True, asobject=False):
213213 holding 1-D ndarrays. The behavior of a numpy recarray is
214214 very similar to the Bunch.
215215
216- ochl : ` bool`
216+ ochl : bool
217217 Temporary argument to select between ochl and ohlc ordering.
218218 Defaults to True to preserve original functionality.
219219
@@ -234,7 +234,7 @@ def _parse_yahoo_historical(fh, adjusted=True, asobject=False,
234234 Parameters
235235 ----------
236236
237- adjusted : ` bool`
237+ adjusted : bool
238238 If True (default) replace open, high, low, close prices with
239239 their adjusted values. The adjustment is by a scale factor, S =
240240 adjusted_close/close. Adjusted prices are actual prices
@@ -246,7 +246,7 @@ def _parse_yahoo_historical(fh, adjusted=True, asobject=False,
246246 = True|False.
247247
248248
249- asobject : ` bool` or :class:` None`
249+ asobject : bool or None
250250 If False (default for compatibility with earlier versions)
251251 return a list of tuples containing
252252
@@ -275,7 +275,7 @@ def _parse_yahoo_historical(fh, adjusted=True, asobject=False,
275275 holding 1-D ndarrays. The behavior of a numpy recarray is
276276 very similar to the Bunch.
277277
278- ochl : ` bool`
278+ ochl : bool
279279 Selects between ochl and ohlc ordering.
280280 Defaults to True to preserve original functionality.
281281
@@ -367,7 +367,7 @@ def fetch_historical_yahoo(ticker, date1, date2, cachename=None,
367367 default to the md5 hash or the url (which incorporates the ticker
368368 and date range)
369369
370- dividends : ` bool`
370+ dividends : bool
371371 set dividends=True to return dividends instead of price data. With
372372 this option set, parse functions will not work
373373
0 commit comments