moved function out of api
							parent
							
								
									3b8cec45da
								
							
						
					
					
						commit
						f4b78b1b24
					
				
							
								
								
									
										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