<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>Bing</title>
        <link>https://paragraph.com/@crybit</link>
        <description>undefined</description>
        <lastBuildDate>Wed, 17 Jun 2026 15:08:31 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Bing</title>
            <url>https://storage.googleapis.com/papyrus_images/f398ff5fbfd3d3667663971719dd6690206e49ece74a1b498e88db0095228767.jpg</url>
            <link>https://paragraph.com/@crybit</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[什么是零知识加密？]]></title>
            <link>https://paragraph.com/@crybit/ODEJ05es97aFXYi9Uicw</link>
            <guid>ODEJ05es97aFXYi9Uicw</guid>
            <pubDate>Thu, 16 Feb 2023 16:42:22 GMT</pubDate>
            <description><![CDATA[本文翻译自ChainLink Blog，原文链接在这里： https://blog.chain.link/zero-knowledge-encryption/零知识加密可确保云存储和密码管理等服务间的端到端数据安全和隐私。加密基础知识尽管当今的加密技术依赖于普通人可能无法理解的复杂数学公式和方程，但加密背后的基本概念却是非常简单的。 加密是将信息（数据）转换为特殊代码的过程，以防止未经授权访问该信息。未加密的消息称为明文。一旦加密，它们就变成了密文。一个容易理解的例子是凯撒密码——也被称为**“移位密码”**——如下所述：考虑这么一句明文消息：“THIS IS A BLOG”。 我们将使用【右移两位】来加密此消息。这就意味着“A”变成“C”，“B”变成“D”，如果我们走到字母表的末尾，它会绕回起点，这样“Z”就变成“B”。 因此，加密后的密文消息为：“VJKU KU C DNQI”。加密密钥加密是给信息上锁，密钥就是锁的钥匙🔑。 加密密钥用于加密或解密消息。 在上面的凯撒密码示例中，发送方和接收方必须事先创建加密密钥。 对称加密凯撒密码是对称加密的一个例子，即发送方和接收方使用...]]></description>
            <content:encoded><![CDATA[<blockquote><p>本文翻译自ChainLink Blog，原文链接在这里：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.chain.link/zero-knowledge-encryption/">https://blog.chain.link/zero-knowledge-encryption/</a></p></blockquote><p>零知识加密可确保云存储和密码管理等服务间的端到端数据安全和隐私。</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">加密基础知识</h1><p>尽管当今的加密技术依赖于普通人可能无法理解的复杂数学公式和方程，但加密背后的基本概念却是非常简单的。</p><p>加密是将信息（数据）转换为特殊代码的过程，以防止未经授权访问该信息。</p><blockquote><p>未加密的消息称为明文。一旦加密，它们就变成了密文。</p></blockquote><p>一个容易理解的例子是<strong>凯撒密码</strong>——也被称为**“移位密码”**——如下所述：</p><blockquote><p>考虑这么一句明文消息：“THIS IS A BLOG”。</p><p>我们将使用【<strong>右移两位</strong>】来加密此消息。这就意味着“A”变成“C”，“B”变成“D”，如果我们走到字母表的末尾，它会绕回起点，这样“Z”就变成“B”。</p><p>因此，加密后的密文消息为：“VJKU KU C DNQI”。</p></blockquote><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">加密密钥</h1><p><strong>加密是给信息上锁，密钥就是锁的钥匙🔑。</strong></p><p>加密密钥用于加密或解密消息。</p><p>在上面的凯撒密码示例中，发送方和接收方必须事先创建加密密钥。               </p><pre data-type="codeBlock" text="关于服务是否提供零知识加密的关键问题是：谁知道加密密钥？应该只是用户。
"><code></code></pre><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">对称加密</h1><p>凯撒密码是对称加密的一个例子，即发送方和接收方使用相同的密钥来加密和解密消息。为了使这种类型的加密有效，双方必须都知道密钥（【<strong>右移两位</strong>】）是什么，并且密钥应该难以猜测或窃取。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/bf9435900ba28a686542d3cbda87fc046771e6322364a5840b0abf24fae7df91.png" alt="在对称密钥加密中，相同的密钥用于加密和解密消息。" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">在对称密钥加密中，相同的密钥用于加密和解密消息。</figcaption></figure><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">非对称加密</h1><p>今天的大多数互联网都以非对称加密为基础，也称为公钥加密。加密密钥以数学上相关的对（公钥和私钥）的形式生成。使用非对称加密的主要好处是任何人都可以使用公钥加密消息，但只有拥有私钥的人才能解密消息。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c9ced0772c0d3e62ff33fbba89384dad7d5aa02eb7b5221c096356153cb9f005.png" alt="在非对称密钥加密中，使用不同的密钥来加密和解密消息。" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">在非对称密钥加密中，使用不同的密钥来加密和解密消息。</figcaption></figure><p>这个方便的功能与对称对应功能一起广泛使用，以支持互联网安全，目前在 HTTPS 等协议以及范围广泛的电子邮件服务、区块链、消息传递应用程序等中使用。</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">零知识加密是如何工作的？</h1><p>互联网上的所有主要应用程序、网站和服务都不同程度地采用了加密。现有的加密协议，如高级加密标准（AES）和传输层安全（TLS）被广泛使用，并已成为互联网应用和服务的标准。</p><blockquote><p><strong>零知识加密不是一个特定的加密协议，而是一个专注于最大程度保护用户数据隐私和安全的【过程】</strong>。</p></blockquote><blockquote><p>为了使服务真正实现零知识，用户的数据必须在<strong>离开设备之前</strong>、<strong>传输过程中</strong>以及<strong>存储在外部服务器上时</strong>进行加密。</p></blockquote><p>这是因为现代加密技术在阻止未经授权的参与者解码加密数据方面通常非常有效。使用蛮力方法破解现代加密在功能上是不可能的。</p><p>但是，为了便于使用和 UX 优势，许多服务提供商还持有用户的加密密钥——引入了一个额外的故障点，这对恶意行为者很有吸引力，因为服务提供商通常持有许多用户密钥。当服务提供商共享加密密钥的知识时，有很多好处（也有坏处），但这也意味着用户以外的其他人可以解密数据——这使得它不是零知识。</p><blockquote><p>关于服务是否提供零知识加密的关键问题是：谁知道加密密钥？它应该只是用户。</p></blockquote><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">使用零知识证明进行身份验证</h1><p>大多数零知识云存储提供商都有用户熟悉的简单用户体验——<strong>输入密码即可访问帐户</strong>。</p><p><strong>但是如果服务提供商不知道或存储您的密码，那么他们如何验证密码是否正确？</strong></p><p>答案是零知识证明，它使服务提供商能够验证用户是否知道加密密钥/密码，而无需用户透露密钥本身。这解决了身份验证问题，但仍然需要各种加密协议来保护数据在移动、上传、下载和存储时的安全。</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">客户端加密</h2><p>客户端加密意味着<strong>数据在传输到外部服务器之前在发送方进行加密</strong>。在零知识加密的上下文中，这意味着数据在<strong>用户与服务提供商通信之前就已加密</strong>——这使得服务提供商实际上不可能在不知道加密密钥的情况下解密数据，即使他们正在托管它。</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">传输中加密</h2><p>传输中加密可在传输过程中保护您的数据。简而言之，当上传或下载某些信息（无论是消息、文件还是其他类型的数据）时，传输中加密可确保在传输过程中没有人可以闯入并查看消息。</p><p>传输中加密协议的行业标准是 TLS。</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">静态加密</h2><p>无论数据是存储在个人计算机上还是云服务器上，静态加密都是指对存储在任何位置的数据进行加密。</p><p>静态加密协议的行业标准是 AES，特别是 AES-256。</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">零知识加密的优缺点</h1><p>使用具有零知识加密的服务会带来各种好处和坏处。</p><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">零知识加密的优点</h3><p>在数据隐私和安全方面，零知识加密是无与伦比的。因为只有用户可以访问加密密钥，所以没有其他人可以解密和查看他们的数据。</p><p>这在云存储和密码管理服务中最有用，在这些服务中，服务器端（即外部服务器）的黑客攻击或利用可能会导致用户隐私受到严重侵犯。通过实施零知识加密设计，服务提供商的责任更小，因为任何外部攻击仍然不会泄露用户数据，同时用户更加放心，即使在服务器攻击的情况下，他们的数据也受到保护。</p><blockquote><p>底线是：如果用户想要保护其数据的隐私和安全，同时仍将其托管在外部服务器上以便于数据管理，没有比零知识加密更好的选择了。</p></blockquote><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">零知识加密的缺点</h3><p><strong><em>无法恢复加密密钥</em></strong></p><p>零知识加密设计的一个局限性是，如果用户无法访问其加密密钥或忘记密码，则通常无法再访问其数据。服务提供商无法提供恢复服务，因为他们不知道加密密钥。</p><p>抵消此限制的一种方法是让用户能够预先创建恢复密钥，但这通常是一次性使用的——在用户第一次使用此选项后恢复再次成为问题。</p><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">速度慢</h3><p>零知识加密设计保证每一步的安全和隐私。提供完全零知识加密保证的服务提供商通常比安全性较低的同行慢，因为安全传输和存储用户数据需要更多的工作。</p><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">减少的应用程序功能集</h3><p>服务提供商经常使用用户数据来创建量身定制的体验。例如，Apple 的照片应用程序将自动浏览用户的照片，以创建精选的体验和回顾。</p><p>由于提供零知识加密设计的服务提供商无法访问用户的任何数据，因此他们无法构建需要用户数据来创建更好、更方便的用户体验的功能。</p><p>即使对于简单的功能也是如此，<strong>例如在完全打开之前预览图像、文件和文件夹的能力</strong>。</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">结论</h1><p>通过正确的设计，提供零知识加密解决方案的服务提供商本质上正在用数学保证取代基于品牌的承诺。用户不必信任零知识云存储提供商或密码管理器来保证他们的数据安全——他们的数据由于实施而安全。</p><p>这种形式的密码保证是 Web3 的真正意义所在，云存储和密码管理提供商中的零知识加密设计只是一个开始。区块链和扩展的零知识证明设计超越了零知识加密设计的局限性，保护了用户的数据隐私、主权和安全，同时仍然实现了创新社会从开放数据流中看到的财富。</p><h1 id="h-more" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">More</h1><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.chain.link/what-is-a-zero-knowledge-proof-zkp/">Zero-knowledge proofs explained</a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://chain.link/education-hub/blockchain">Blockchain explained</a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://chain.link/education/smart-contracts">Smart contracts explained</a></p></li></ul>]]></content:encoded>
            <author>crybit@newsletter.paragraph.com (Bing)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/18222b7e8699795c2b2cf997f9308927ce452ac48afe32b183ef45ca0dad9b9a.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[$BTC-2023年1-2月走势技术流复盘]]></title>
            <link>https://paragraph.com/@crybit/btc-2023-1-2</link>
            <guid>CQInZ5Up4LXupXFnrFDN</guid>
            <pubDate>Mon, 13 Feb 2023 17:13:57 GMT</pubDate>
            <description><![CDATA[起始正如推特简介里面写的，推特记录复盘用。在今天这个值得纪念的日志（BUSD进入通缩模式…），正式开始复盘图表吧。 主要是整理下最近推特的BTC图表记录。按照时间顺序梳理，更能看清这一波BTC的上涨和下跌。 顺便感叹下，这一波的庄家真是个技术流！2023-01-07从2023年1月7日开始吧，那段时间，BTC经历了长达两个月的极限横盘，几乎没有任何波动，推上的大V也都没了声音，币圈可谓是一潭死水。 作为一个现货超短线技术流，那天打开币安往前翻了翻周线，想找一个跟当前周线形态相似的时间段，作为后续操作的参考。 是的，是在刻舟。没想到还找到了一个相似的。于是简单地刻了一下，发推记录并置顶提醒自己，时刻注意大周期的走势。 https://twitter.com/BitDanceUp/status/1611654584325505024?s=20&t=HYX-_N8uRhgqfEr7ufwb9w 刻刀落在了BTC 18年底19年初的周线图上，这个时期，BTC周线经历了四个明显的趋势变化，正如图示：1. 周线横盘，窄幅震荡2. 大幅下跌3. 极限横盘，几无波动，一潭死水启动，拉升！BTC ...]]></description>
            <content:encoded><![CDATA[<h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">起始</h1><p>正如推特简介里面写的，推特记录复盘用。在今天这个值得纪念的日志（<strong>BUSD进入通缩模式…</strong>），正式开始复盘图表吧。</p><p>主要是整理下最近推特的BTC图表记录。按照时间顺序梳理，更能看清这一波BTC的上涨和下跌。</p><p>顺便感叹下，<strong>这一波的庄家真是个技术流！</strong></p><h1 id="h-2023-01-07" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2023-01-07</h1><p>从2023年1月7日开始吧，那段时间，<strong>BTC经历了长达两个月的极限横盘，几乎没有任何波动，推上的大V也都没了声音，币圈可谓是一潭死水</strong>。</p><p>作为一个<strong>现货超短线技术流</strong>，那天打开币安往前翻了翻周线，想找一个跟当前周线形态相似的时间段，作为后续操作的参考。</p><p>是的，是在刻舟。没想到还找到了一个相似的。于是简单地刻了一下，发推记录并置顶提醒自己，时刻注意大周期的走势。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/BitDanceUp/status/1611654584325505024?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w">https://twitter.com/BitDanceUp/status/1611654584325505024?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w</a></p><p>刻刀落在了BTC 18年底19年初的周线图上，这个时期，<strong>BTC周线经历了四个明显的趋势变化</strong>，正如图示：</p><ul><li><p>1. 周线横盘，窄幅震荡</p></li><li><p>2. 大幅下跌</p></li><li><p>3. 极限横盘，几无波动，一潭死水</p></li><li><p>启动，拉升！</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0a3e9b6771569489b73a1e99bff7f7c88f36643761b5a2556a01a4b413517992.png" alt="BTC 18年底19年初的周线图" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">BTC 18年底19年初的周线图</figcaption></figure><p>再回头看1月7日当时BTC的周线图，1横盘2下跌3死水，可以说是非常像了。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c12283ac202c0afce11897cbc2dec789095c8372a8f2adb2b6d3ccf5b6bbf491.png" alt="23年1月7日 BTC周线图" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">23年1月7日 BTC周线图</figcaption></figure><p>再看一个月后今天（2023年2月13日）的周线图</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b111daac64892fa6c4e1e264f419880d9ec8eeb4ad10491a11d79072ba988a82.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>几张图对比看看，<strong>无怪那么多人喜欢刻舟了。因为有些时候，历史确实是能给未来指引的。</strong></p><h1 id="h-202321" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2023年2月1日</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e3020fb6e1362b8e88cc76dd6616f757de76aa244ea4f08456d66d2990784119.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>1月7号刻完舟，1月8号就开始涨了，只能说，心血来潮的这次刻舟，来的有有点巧了。这波上涨持续到了1月底，<strong>持续三周</strong>。</p><p>2月1日，达到本轮阶段峰值，<strong>开始走下坡路</strong>。</p><p>正是在这个阶段，我又开始画线了。<strong>没用什么高深的理论，就是把最近的高点和低点用直线连起来，然后观察趋势变化</strong>。就像下图这样，<strong>结果大大出乎我的意料</strong>。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6c748036663d2bb358929b48464687723a18e9841016081916757474ea84f8ab.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>这是BTC再上涨之后进入一个震荡的阶段，MACD能看到连续两次的顶背离。</p><p>因为我是现货超短线，所以我很多时候关注的是4小时线和1小时线。</p><p>4小时线和1小时线如下，都是连接高点和低点的直线。</p><p>4小时线触及下方支撑线，有一个向上反弹的趋势，但是初始反弹无力，于是对一小段画了线。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d28ba8c3a8002fb456a4c56967acb1ac9d015679329ef3c6a2d3ea51d1af283a.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>放大看一小时线，更清楚一点。这个时候，还只是单纯地根据高低点连线。只是抱着试试的态度。</p><p><strong>我一直以来的理念都是用真金白银去试，因为模拟盘根本不上心。投入真金白银之后的状态是完全不一样的，花钱验证认知，亏钱就是交学费。</strong></p><p>一小时线是一个类似大趋势的通道上涨。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/84f362bdc526d05977f9a0fff4c80ee13d7890320960cc3338f2db290da4121e.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>结果就在时间走到画线的尽头的时候，趋势一个向下的假动作之后，然后上去了。</p><p><strong>注意看上去的顶点，和下跌的起点。正是之前大通道的上轨！</strong></p><p><strong>本来画线是试试的态度，说实话，这个精准度惊到我了。</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ed03f9a32faeb20c766eda3739b11148c1bba5438c911baa153e0ba534612ddf.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>通道触及上轨，再次转头向下。</p><p>第二天起床一看线：嘿！这一波的庄家真的是个技术流！</p><p>这K线画的也太漂亮，走的也太标准了。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/02478508e7d15c303d0047cf7bc3b89f888eb829f01df5ba05f1d9c18514715c.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>这一根中轨，暂时撑住了下跌。<strong>能撑多久呢？至少撑了八个小时</strong>。因为半天后我去看，还截图记录了。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e4350fd0334b476a65b4a79a3c50a2e50e5cbdfc43ff0a2369304ac52a78c769.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h1 id="h-202323" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2023年2月3日</h1><p>时间是2月3日中午。<strong>晚上是非农数据公布时间。</strong></p><p><strong>更要注意的是，这里根据最近的高低点画了几条紫色的线。注意了，紫色的线！</strong></p><p>晚上非农数据出来的一瞬间，关注盘面的我又被惊到了！</p><p>庄家的扎针太精准了！</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6d38974b2a7e5ae5b11a1ea052839165b1a05bb52f632141549481da13f2081b.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>放大看！</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/70a71b91a7b3e569a756118bdd07f10ae387816e363a9c5268db929c3bac3317.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>不得不感叹啊，庄家真是个技术流！</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/BitDanceUp/status/1621502360114835456?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w">https://twitter.com/BitDanceUp/status/1621502360114835456?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w</a></p><h1 id="h-202326" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2023年2月6日</h1><p>这几天，各种山寨热点不断，板块轮动频发，赚钱效应十足。已经到了推特喊单即涨的地步。所以这几天主要关注山寨。关于山寨的画线有空再说。接着说BTC。</p><p>2月6日，对着BTC最近的高低点花了几条线。一看，有点吓人啊。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/BitDanceUp/status/1622495877360398337?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w">https://twitter.com/BitDanceUp/status/1622495877360398337?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/089029a64fdf29fd2ef503a8467789f41d58eff0c1b0ebd2b744af6fd24f3286.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>4小时级别，这个下跌通道走的有点坚决，感觉不是个好事情。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/BitDanceUp/status/1622759065964396544?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w">https://twitter.com/BitDanceUp/status/1622759065964396544?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w</a></p><p>注意这个下跌通道，BTC一直再靠近下轨的一侧前进，也许可以说明BTC势弱。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/afa6fa1f23bda99bccd2c678b66a52cead5866baa5e043006f92b0ab77260edf.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>这里有几条短线，都是15分钟级别画的超短线，看看就好。也有一定的参考价值。</p><p>此时已经接近大级别通道下轨，会不会干脆地跌下去呢？</p><h1 id="h-202328" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2023年2月8日</h1><p>显然不会，庄家又给拉上去了。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/BitDanceUp/status/1623301414771658752?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w">https://twitter.com/BitDanceUp/status/1623301414771658752?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w</a></p><p>拉到了通道上轨，还突破上去了，但是上去骗了一炮就撤了。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c0f4f34f1165822f281b2baefdecb6a1adaa7543616341a9f3b23e73b2244846.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>然后开始贴着上轨摩擦，摩擦了十几个小时！</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/a536acd59b0287729b124bd512e2ca23579ad292b24c7549dd54eb6cab56e2f2.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>这种趋势显然还是会下去的吧，这种像不像垂死挣扎，临死前突然暴起，然后依依不舍地抓住上轨不像下去，但是大势已去。</p><h1 id="h-202329" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2023年2月9日</h1><p>终于，还是下去了。</p><p>下去了，插针了，针头一如既往地精准！</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/f21712ea652fec3fd16e9411557d3b242b2e16f984ca2736b3e216e3e18d2c28.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>当天，跌破<strong>大级别震荡通道</strong>下轨，触及<strong>下跌通道</strong>中轨。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e249776dc0720f78a1cf63fd41248be65b0725cf8a3f276353f78aed8864af1c.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h1 id="h-2023210" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2023年2月10日</h1><p>第二天早上起床（看截图时间）一看，跌破中轨，触及下跌通道下轨。</p><p>继续感叹，<strong>这一波庄家是个技术流。</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0088277ed3b140cb702b6402866feb15fd18c65a2127bf6efd99ae8b6c28ea60.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>触及中轨，会直接跌破下去吗？</p><p>按照庄家的套路和市场规律，不会吧。是的，又开始贴线摩擦了！</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/BitDanceUp/status/1624036896753192962?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w">https://twitter.com/BitDanceUp/status/1624036896753192962?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w</a></p><p>看上图截图时间，已经是晚上了！</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/05f3fad2b717049d1daa63f8446e5f7ff50953d2673a7c61a77aa9cb27a5fd8f.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>能撑住吗？周末到了，BTC一般在周末波动很小，可以等周一再看！</p><h2 id="h-2023213" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2023年2月13日</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/BitDanceUp/status/1624919453317357569?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w">https://twitter.com/BitDanceUp/status/1624919453317357569?s=20&amp;t=HYX-_N8uRhgqfEr7ufwb9w</a></p><p>横盘了一个周末，乏善可陈。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7f47a2224d7372c388cf0c1827aaadc2e7b6c014a9c23b9f96c9d09b5882b98f.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>早上看线不对，特别是<strong>日线级别，MACD即将触及零轴</strong>。</p><p><strong>一般1小时、2小时、4小时、日线级别的MACD即将触及零轴的时候，大概率会有一个加速触及的过程（可以多找几个图对比MACD和K线看看，就比如上方的某些图。）。</strong></p><p><strong>当然，也有加速转向的。</strong></p><p>看MACD感觉线不对，于是清仓把钱换成USDT提到链上挖矿去了，顺便交互一下，期待未来的空投。</p><p>不知道是消息配合趋势，还是趋势配合消息。今天，纽约金融服务部命令Paxos停止增发BUSD。又跌了一波。</p><p>莫名躲过了一波。看日线MACD趋势，可能会加速下跌。</p><p>当然，趋势不可预测，只是有一定的概率。希望能多跌几天，毕竟我空仓了，希望庄家给机会拣点便宜筹码。</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">此刻</h1><p>此时，BTC仍然在下跌通道内运动。这个通道的线我已经延长了好几次了。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7805f02bd68a59b9513ae5acad88ced9aea2a2dd0899140df4712f3d8a4ce7b1.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>会跌破吗？拭目以待吧。</p>]]></content:encoded>
            <author>crybit@newsletter.paragraph.com (Bing)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/77f7c264746f8269ed216818cdafce95550a44b997404e6a6eaf78a9092ba153.jpg" length="0" type="image/jpg"/>
        </item>
    </channel>
</rss>