moved function out of api

max_pain_deribit
Nelson Torres 2024-12-07 10:13:12 -03:00
parent ca5e1b6ed1
commit 57059da682
2 changed files with 14 additions and 14 deletions

View File

@ -10,6 +10,20 @@ async def max_pain_daemon(
) -> None: ) -> None:
async with maybe_open_oi_feed() as oi_feed: async with maybe_open_oi_feed() as oi_feed:
print('Im in...') 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(): async def main():

View File

@ -246,20 +246,6 @@ def get_config() -> dict[str, Any]:
return section 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: class Client:
''' '''