Update __init__.py
This commit is contained in:
parent
1e707ea9c9
commit
8a3e415717
@ -29,7 +29,7 @@ def trim_tickerlist(tickerlist: List[Dict], timerange: Tuple[Tuple, int, int]) -
|
|||||||
if stype[0] == 'index':
|
if stype[0] == 'index':
|
||||||
start_index = start
|
start_index = start
|
||||||
elif stype[0] == 'date':
|
elif stype[0] == 'date':
|
||||||
while tickerlist[start_index][0] < start * 1000:
|
while start_index < len(tickerlist) and tickerlist[start_index][0] < start * 1000:
|
||||||
start_index += 1
|
start_index += 1
|
||||||
|
|
||||||
if stype[1] == 'line':
|
if stype[1] == 'line':
|
||||||
@ -37,7 +37,7 @@ def trim_tickerlist(tickerlist: List[Dict], timerange: Tuple[Tuple, int, int]) -
|
|||||||
if stype[1] == 'index':
|
if stype[1] == 'index':
|
||||||
stop_index = stop
|
stop_index = stop
|
||||||
elif stype[1] == 'date':
|
elif stype[1] == 'date':
|
||||||
while tickerlist[stop_index-1][0] > stop * 1000:
|
while stop_index > 0 and tickerlist[stop_index-1][0] > stop * 1000:
|
||||||
stop_index -= 1
|
stop_index -= 1
|
||||||
|
|
||||||
if start_index > stop_index:
|
if start_index > stop_index:
|
||||||
|
Loading…
Reference in New Issue
Block a user