QCP Capital: охлаждение инфляции стимулирует рост Ethereum перед сентябрьским снижением ставки ФРС

cryptonews.ruPublished on 2025-08-13Last updated on 2025-08-13

Трейдинговая фирма QCP Capital выпустила новый отчет, в котором проанализировала влияние свежих данных по инфляции в США на криптовалютные рынки и дала прогноз развития событий до сентябрьского заседания ФРС.

Инфляция охладилась сильнее ожиданий

Базовый индекс потребительских цен (CPI) в США составил 2,7% против прогнозируемых 2,8%, в то время как ключевой показатель CPI зафиксирован на уровне 3,1% вместо ожидаемых 3,0%. Более мягкие данные по базовой инфляции укрепили позиции сторонников начала цикла смягчения денежно-кредитной политики ФРС уже в сентябре — большинство участников рынка теперь настроены на снижение ставки на 25 базисных пунктов.

Инфляция товаров, которая, как ожидалось, должна была «разогреться» из-за перекладывания компаниями возросших затрат на потребителей, оказалась ниже прогнозов. Рынок по-прежнему закладывает около 60 базисных пунктов снижения ставок в 2025 году, а терминальная ставка остается стабильной несмотря на ослабление рынка труда.

Ethereum набирает обороты перед историческими максимумами

Долгосрочные держатели Ethereum наконец ощущают эйфорию — цена монеты приближается к историческим максимумам. Привлечение капитала компанией Bitmine для создания резерва в Ethereum привлекло внимание рынка. Аналитики QCP Capital отмечают, что любые вложения в Ethereum оказывают более заметное влияние по сравнению с биткоином из-за меньшей капитализации и относительно тонкой ликвидности.

Команда QCP ожидает, что текущий импульс Ethereum сохранится до тех пор, пока в Ethereum-ETF продолжают поступать свежие средства. Фирма связывает рост Ethereum с общим улучшением настроений на рынке после снятия ключевых рисков.

Движение средств в Ethereum-ETF США. Источник: Farside Investors

Акции обновляют максимумы на фоне геополитической разрядки

После устранения нескольких ключевых рисковых событий фондовые рынки продолжили ралли до новых исторических максимумов. В торговом противостоянии США и Китая было объявлено о 90-дневном продлении соглашения TACO. Геополитическая напряженность между Украиной и Россией снизилась — эскалация теперь рассматривается как отдаленная возможность, а базовым сценарием стало заключение перемирия или мирного соглашения.

Джексон-Хоул в фокусе внимания

Следующей ключевой точкой станет экономический симпозиум в Джексон-Хоуле 21 августа, где QCP Capital ожидает от официальных лиц ФРС сигналов о готовности к сентябрьскому снижению ставки на 25 базисных пунктов. До сентябрьского заседания Федерального комитета по открытым рынкам (FOMC) выйдут только один отчет по CPI и один по рынку труда (NFP), и аналитики считают, что эти данные вряд ли существенно повлияют на решение регулятора.

Фьючерсное позиционирование показывает, что инвесторы рассматривают 3% как нижнюю границу для ставки ФРС в 2026 году. Рыночные ожидания снижения ставок на 2025 год остались неизменными после публикации данных по инфляции.

Сочетание охлаждающейся инфляции и растущего аппетита к риску создает благоприятную среду для роста криптовалют. Ethereum особенно выигрывает от этой конфигурации благодаря структурным особенностям рынка и растущему притоку капитала через ETF.

Trending Cryptos

Related Reads

Programmers Around the World Are Giving Money Away to Anthropic for Free, and the Company Finally Can't Stand It Anymore

Anthropic's recent blog post urges developers using Claude Code to stop wasting money on tokens. The core issue is inefficient usage that inflates costs, often unbeknownst to users. The article outlines six key optimization strategies: 1) Use `/clear` after completing a task to prevent irrelevant previous context from bloating future interactions. 2) Set the model and reasoning effort level at the start of a session; changing them mid-conversation invalidates the prompt cache, forcing a full-price recomputation of the entire history. 3) Attach files with `@` instead of typing paths manually to avoid unnecessary tool calls and exploratory file reads that add to the context. 4) Add quiet flags to noisy commands (e.g., in `CLAUDE.md`) to minimize lengthy output that fills the context window. 5) Use `/compact` before a break while the cache is still hot, as it costs only one-tenth of compressing after the cache expires. 6) Offload large-output tasks to sub-agents, which run in isolated contexts and only return conclusions, keeping the main conversation lean. The cost structure is explained: output tokens are 5x more expensive than input tokens due to serial "decoding." Pricing depends on the model (Opus, Sonnet, Haiku) and reasoning effort level. The most powerful cost-saving tool is the **prompt cache**, which allows reusing previously computed prefixes at 10% of the input cost. However, the cache is fragile and invalidated by switching models, changing effort levels, toggling Fast mode, using `/compact`, session timeout, or resuming old sessions. A critical problem is **context bloat (O(n²) growth)**, where each interaction accumulates files read and command outputs, making every subsequent round more expensive. Strategies to combat this include using `@` for files, quiet flags for commands, employing sub-agents, and using `/clear` or `/compact`. The `/rewind` command is also noted for trimming recent off-track turns without breaking the cache. The post frames efficient token management as a new essential skill for developers in the AI era, crucial for maximizing productivity within a budget.

marsbit1m ago

Programmers Around the World Are Giving Money Away to Anthropic for Free, and the Company Finally Can't Stand It Anymore

marsbit1m ago

OpenAI Accelerates at a Blazing 16x Speed, GPT-5.6 Multi-Agent V2 Goes Live, 741-Round Monster Conversation Opens in 1 Second

OpenAI has unveiled a pair of major performance and capability upgrades for ChatGPT and its underlying systems, delivering dramatic speed improvements and launching a new multi-agent architecture. The first breakthrough is a massive front-end optimization for handling extremely long conversations. Using a test case of a 741-round "monster" conversation (231MB in size), OpenAI achieved: * Application load speed increased by 94% (from 27.62 seconds down to 1.66 seconds). * Memory growth reduced by 87.8%. * Overall memory usage cut by 41.2%. * Network requests dropped by 98.2% (from 894 to 16). * Session items loaded decreased by 99.6% (from 15,529 to 64). This overhaul means lengthy chat histories and complex, tool-heavy Codex sessions will load significantly faster and with much lower memory overhead. Simultaneously, OpenAI has fully launched the "Multi-Agent v2" system for GPT-5.6. This architecture allows a primary "Agent" to automatically break down complex tasks and delegate subtasks to different specialized models—such as GPT-5.6 Sol (for complex coding), Terra (daily programming), Luna (fastest/cheapest), and Daybreak (cybersecurity)—each with configurable reasoning strength. The goal, as stated by OpenAI president Greg Brockman, is to move "towards saying goodbye to manually picking models." This intelligent distribution allows costly, powerful models to be reserved for only the most complex steps (~20% of a task), dramatically reducing inference costs and accelerating ChatGPT's evolution from a chat tool into an automated workflow platform. Together, these updates tackle the twin user pain points of "waiting" (slow load times) and "choosing" (manual model selection), paving the way for a seamless, high-performance AI assistant capable of managing extensive, automated tasks.

marsbit2m ago

OpenAI Accelerates at a Blazing 16x Speed, GPT-5.6 Multi-Agent V2 Goes Live, 741-Round Monster Conversation Opens in 1 Second

marsbit2m ago

Morgan Stanley Research Report Analysis: The Absence of Long-Term Agreements for Traditional Memory May Not Be Bad; DDR4 and SLC NAND Are in the Strongest Price Increase Cycle

Morgan Stanley's report on August 14, 2026, highlights a strong price upcycle in traditional memory chips, arguing that the absence of Long-Term Agreements (LTAs) is advantageous. The report focuses on three products where fundamentals are improving due to a widening supply-demand gap and increased pricing power: DDR4, SLC NAND, and NOR Flash. For DDR4, price hikes are forecasted at 50% in Q3 2026 and over 10% in Q4, driven by broad demand and accelerated supply exit. The lack of LTAs allows vendors to fully capture spot price gains. SLC NAND is identified as the highest-conviction call, with prices expected to surge over 50% in both Q3 and Q4 2026, supported by severe capacity constraints and demand migration from MLC. Supply tightness is projected to last into 2027. NOR Flash prices are also expected to rise further in Q4 2026, with momentum potentially extending into H1 2027, supported by industrial, automotive, and AI server demand. Morgan Stanley has raised earnings estimates for several companies, with AP Memory as the top pick, followed by GigaDevice, Macronix, Winbond, Powerchip, and Nanya Tech. The core thesis is that without LTAs, traditional memory suppliers have greater pricing flexibility to benefit from the current upcycle, which for DDR4 will last through H2 2026, and for SLC NAND and NOR Flash, potentially into H1 2027.

marsbit21m ago

Morgan Stanley Research Report Analysis: The Absence of Long-Term Agreements for Traditional Memory May Not Be Bad; DDR4 and SLC NAND Are in the Strongest Price Increase Cycle

marsbit21m ago

Trading

Spot

Hot Articles

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of ETH (ETH) are presented below.

活动图片