Compare commits
	
		
			1 Commits 
		
	
	
		
			f9018670b9
			...
			212682a231
		
	
	| Author | SHA1 | Date | 
|---|---|---|
|  | 212682a231 | 
							
								
								
									
										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