TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #401 · 15 дек.

Функция asyncio.wait() это еще один способ вызвать множество асинхронных задач. Она работает в нескольких режимах. 1. Самый простой - ждем завершения всех задач async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(10)] done, pending = await asyncio.wait( tasks, return_when=asyncio.ALL_COMPLETED ) for task in done: try: print(task.result()) except Exception as e: print(e) Очень похоже на gather, но работает не так. ▫️возвращает не результаты, а два сета с объектами Task у которых можно забрать результат через task.result() если они в списке done ▫️не гарантирует порядок результатов так как оба объекта это set ▫️не выбрасывает исключение когда оно появляется, а сохраняет его в Task. Исключение появится когда попробуете забрать резултьтат. 2. Ждем завершения первой задачи, даже если там ошибка. async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(3)] done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_COMPLETED ) # в done может быть несколько задач! for task in done: try: print(task.result()) except Exception as e: print(f"Fail: {e}") # Оставшиеся задачи в pending, как правило, нужно отменить, иначе они будут продолжать работать for task in pending: task.cancel() В сете done будут таски которые успели завершится, причем как успешно так и нет. 3. До первой ошибки. Тоже самое, но с аргументом FIRST_EXCEPTION done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_EXCEPTION ) Функция завершается как только первая задача упадет с ошибкой. Учтите, что в любом случае done вы можете обранужить несколько задач, как с ошибками так и успешные. ↗️ Полный листинг примеров здесь #async

Hashtags

Резултати

Пронајдени 2 слични објави

Пребарај: #cryptostrategy

当前筛选 #cryptostrategy清除筛选
Crypto M - Crypto News

@CryptoM · Post #65371 · 13.04.2026 г., 02:55

🚀 BTC Decline Affects Whale's Investment Strategy On April 13, BTC experienced a slight decline, impacting the HYPE token, which fell before recovering above $41. According to BlockBeats, a major investor known for profiting from a long BTC exchange rate strategy is facing pressure, with a capital withdrawal of $1.9 million this week. The investor currently holds a BTC long position with 40x leverage, valued at $30.06 million at an average price of $70,557, and a HYPE short position with 5x leverage, valued at $23.03 million at an average price of $38.93. The positions were established during a previous HYPE surge, with the full setup completed by March 20, totaling approximately $53 million. Since the establishment of these positions, the investor has incurred a net loss of about $1.32 million, with the portfolio yet to achieve positive returns. #BTC#HYPE#WhaleInvestment#Leverage#CapitalWithdrawal#CryptoStrategy#BTCDecline#InvestmentLoss#CryptoMarket

Crypto M - Crypto News

@CryptoM · Post #64862 · 10.04.2026 г., 05:14

🚀 Cryptocurrency Whale Faces Losses Amid Market Fluctuations On April 10, according to BlockBeats, monitoring by Hyperinsight revealed that a major cryptocurrency investor, known for leveraging market downturns, has faced challenges with their trading strategy. This investor has historically profited by betting on the 'BTC/altcoin' exchange rate during market declines. However, with Bitcoin stabilizing and HYPE gaining strength, surpassing $40 with a daily increase of over 5%, both sides of the investor's strategy are under pressure, resulting in a daily capital withdrawal of $900,000. Currently, the investor holds a long position in Bitcoin with a 40x leverage, valued at $30.4 million, and a short position in HYPE with a 5x leverage, valued at $23.2 million. The investor began positioning during HYPE's previous surge and completed their setup by March 20, with a total scale of approximately $53 million. Since then, they have incurred a net loss of about $300,000, without achieving positive returns. Previously, this investor employed a similar strategy, investing around $50 million to go long on Bitcoin while shorting eight other cryptocurrencies, including ETH, XRP, and ADA. This approach proved successful, maintaining a total cycle profit of approximately $37.1 million. #Cryptocurrency#Whale#MarketFluctuations#Bitcoin#HYPE#Leverage#CapitalWithdrawal#BTC#Altcoin#InvestorLosses#CryptoStrategy#BlockBeats#Hyperinsight#XRP