moved function out of api
parent
ca5e1b6ed1
commit
57059da682
14
max_pain.py
14
max_pain.py
|
@ -10,6 +10,20 @@ async def max_pain_daemon(
|
|||
) -> None:
|
||||
async with maybe_open_oi_feed() as oi_feed:
|
||||
print('Im in...')
|
||||
def check_if_complete(
|
||||
oi: dict[str, dict[str, Decimal | None]],
|
||||
|
||||
) -> bool:
|
||||
for strike in oi:
|
||||
if (
|
||||
oi[strike]['C'] == None
|
||||
or
|
||||
oi[strike]['P'] == None
|
||||
):
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
|
||||
|
||||
async def main():
|
||||
|
|
|
@ -246,20 +246,6 @@ def get_config() -> dict[str, Any]:
|
|||
|
||||
return section
|
||||
|
||||
def check_if_complete(
|
||||
oi: dict[str, dict[str, Decimal | None]],
|
||||
|
||||
) -> bool:
|
||||
for strike in oi:
|
||||
if (
|
||||
oi[strike]['C'] == None
|
||||
or
|
||||
oi[strike]['P'] == None
|
||||
):
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
|
||||
class Client:
|
||||
'''
|
||||
|
|
Loading…
Reference in New Issue