Professional virtual currency information station welcome
We have been making efforts.

vc Page 33

Cryptocurrency is a non-legal monetary asset based on digital technology and blockchain, possessing the functions of a medium of exchange and a store of value. Cryptocurrency is a transaction medium that uses cryptographic principles to ensure transaction security and control the creation of transaction units. Cryptocurrency is a type of digital currency (or virtual currency). Bitcoin became the first decentralized cryptocurrency in 2009, after which the term “cryptocurrency” was more commonly used to refer to such designs. Since then, several similar cryptocurrencies have been created, and they are usually referred to as altcoins. Cryptocurrency is based on a decentralized consensus mechanism, in contrast to the banking financial system that relies on a centralized regulatory system.

GitHub Hot Project Report On January 19, 2026 - Artificial Intelligence, Development Tools And Financial Technology Projects

Today’s hot spots: AI, development tools and financial technology projects dominate the hot list

Today's GitHub hot list covers a diverse range of fields, from practical tools such as yt-dlp and tobi/try to AI speech synthesis VoxCPM, to the high-performance algorithmic trading platform nautilus_trader. The specific project summary is as follows:

yt-dlp/yt-dlp (142678) – in-depth analysis report

Executive Summary: yt-dlp is a tool that redefines command line media download standards through continuous iteration and plug-in architecture. It solves the core pain points of users in cross-platform and multi-site content acquisition, and has become an indispensable tool for developers and individual users.

Value Proposition Technical Architecture and Implementation Highlights (Technical Architecture)• Key technology choices:• Code sample interpretation: # JSON field traversal design of output template

'%(subtitles.{lang}.{-1}.ext)s' # Dynamically obtain the last subtitle format. This design embodies the metadata-driven philosophy: replacing hard coding with a template language to enable the tool to adapt to unknown media format changes in the future. Community Health and Ecosystem (Community & Ecosystem)• Ecological niche analysis: youtube-dl has an average daily update volume of 15 times (vs 1 time) in the field of differentiated and complementary competitive products, with a CI automation rate of 100%. Enterprise-level customized solution N_m3u8DL-CLI supports more complex DRM protection flows, but only in m3u8 format. Professional-level streaming media reverse engineering yt-dlp unified API + plug-in ecology, covering 95% of mainstream sites. Full-scenario media acquisition solution️ Adoption & Application• Best practice scenarios: 1. Scientific research data collection: –match-filters "duration>?600" Filter long videos +–write-info-json structured metadata 2. Multi-language content archiving: –sub-langs 'en.*,ja' –write-subs Multi-subtitle batch download 3. Live content backup: –live-from-start –hls-use-mpegts Real-time stream segment recording• Potential risks and pitfall avoidance guide: Quick overview of project link developers/organizations

Technical influence: As a star project driven by the open source community, yt-dlp has established its technical leadership in the field of video downloading and streaming media processing with a core warehouse of 142,000+ stars, and has become an indispensable basic tool in the developer ecosystem.

Technology stack preference: Focus on Python (core tool development), Shell (construction and dependency management, such as FFmpeg integration) and TypeScript (auxiliary tool interaction) to form a lightweight, cross-platform tool chain technology stack, emphasizing efficiency and scalability.

Core areas: Focus on multimedia processing tool chains, especially in the fields of video downloading, streaming media parsing and format conversion, providing developers with stable, open source underlying infrastructure support.

natechsystems/nautilus_trader (17793) – in-depth analysis report

One sentence summary (Executive Summary):

NautilusTrader is a high-performance algorithmic trading platform with Rust as the core and Python as the interface. It achieves zero-code switching between backtesting and real trading through event-driven architecture, provides quantitative traders with a unified, safe and scalable solution, and directly addresses the core pain point of "backtesting ≠ real trading" in traditional quantitative development.

Value Proposition Technical Architecture and Implementation Highlights (Technical Architecture)• Key technology selection• Code sample interpretation // High-precision price type definition (core model layer)

repr(transparent)

derive(Copy, Clone, PartialEq, Debug)

pub struct Price(i128); // 128-bit integer supports 16-digit decimal precision

//Asynchronous order processing (engine layer)

async fn process_order(order: Order) -> Result {

let venue = venue_adapter_map.get(&order.venue_id)?;

venue.execute_order(order).await

}Design highlights: transparent packaging (#

repr(transparent)

) Ensure FFI layer type safety, asynchronous function chain calling avoids callback hell, and error type enumeration clearly distinguishes the reasons for execution failure. Community Health and Ecosystem (Community & Ecosystem) • Niche Analysis ️ Getting Started and Application (Adoption & Application) • Best Practice Scenario 1. Cross-market arbitrage system: Connect to 5+ exchanges (Binance/Kraken/Deribit, etc.) at the same time, and use nanosecond timestamps to achieve triangular arbitrage 2. AI Training pipeline: Use the backtest engine as a reinforcement learning environment to train high-frequency market making strategies (supports distributed backtesting) 3. Options market maker system: Advanced order types (OCO/iceberg orders) + precise risk management (128-bit precision) • Potential risks and pit avoidance guide project link developer/organization overview

Technical influence: Nautech Systems occupies a prominent position in the algorithmic trading technology community. Its Rust implementation of the nautilus_trader project has 17,794 stars, demonstrating the wide recognition of its high-performance trading solutions.

Technology stack preference: Mainly using Rust to build a high-performance core engine, supplemented by Python for data processing, integration and experimentation, reflecting the dual pursuit of performance and flexibility.

Core areas: Focus on next-generation algorithmic trading technology, which belongs to the fields of financial technology and quantitative finance.

OpenBMB/VoxCPM (4496) – In-depth analysis report

Executive Summary: VoxCPM uses innovative continuous spatial speech modeling technology to achieve high-fidelity speech synthesis and zero-sample cloning without a word segmenter, opening up a new paradigm for AI speech applications that pursue the ultimate in naturalness.

Value Proposition Technical Architecture and Implementation Highlights (Technical Architecture)• Key technology selection Reasons for technology selection Strategic value MiniCPM-4 open source bilingual LM base low-cost reuse of NLP capabilities to support cross-language understanding AudioVAE high-fidelity audio coding achieves 24kHz → 44.1kHz quality transition (VoxCPM1.5) LoRA fine-tuning parameters efficiently update enterprise-level customization needs, reducing fine-tuning costs by 80%• Code sample interpretation wav = model.generate(

text="VoxCPM is innovative…",

prompt_wav_path="voice.wav", #Key: Zero sample cloning entry

cfg_value=2.0, # LM ​​boot strength: quality vs speed trade-off

inference_timesteps=10 # Number of diffusion steps: 10 steps = 0.15RTF, 50 steps = broadcast quality

) Design subtleties: Community Health and Ecosystem (Community & Ecosystem) • Niche analysis dimension VoxCPM Competitor (CosyVoice) Competitor (VALL-E) Technology Paradigm Continuous Space Modeling Discrete token Discrete token clone dimension Full dimension (emotion/rhythm) Basic timbre Basic timbre Open source strategy Full weight + fine-tuning Support partial weight Code only Real-time performance RTF 0.15 RTF 0.25 Does not support streaming differentiation competition strategy:

Advantages of technology generation: the nature of continuous modeling surpasses discrete token solutions

Engineering leadership: 0.15RTF+44.1kHz builds a performance moat

Ecological openness: LoRA fine-tuning lowers the threshold for enterprise customization️ Get started and apply (Adoption & Application) Project link developers/organizations quick overview

Technical influence: With the explosive growth of 60 public warehouses and over 50,000 total stars (including ChatDev, MiniCPM-V and other star projects) in two years, OpenBMB has quickly become a core force in the large model open source community, with significant technical radiation and developer recognition.

Technology stack preference: Deeply integrated with the Python ecosystem (accounting for over 90%), supplemented by Jupyter Notebook for rapid iteration, highlighting its dual pursuit of engineering efficiency and experimental flexibility in AI model development.

Core areas: Focus on large model basic technology and AGI system research and development, covering key directions such as multi-modality (MiniCPM-V), agent (XAgent), tool chain (ToolBench), and building a full-stack technology base for general artificial intelligence.

tobi/try (2786) – in-depth analysis report

Executive Summary: try is a command line navigation tool designed for developers to experiment. Through intelligent fuzzy search and automatic date archiving, it transforms scattered temporary projects into traceable "experimental homes" and solves the problem of chaotic experimental management caused by developers' jumping thinking.

Value Proposition Technical Architecture and Implementation Highlights (Technical Architecture)• Interpretation of code examples# Core fragment of intelligent sorting algorithm

projects.sort_by do |p|

# Time weight (recently used first)

time_weight = (Time.now – p.mtime) / (60*60*24)

# Name matching weight

name_weight = fuzzy_score(p.name, query)

# Comprehensive score (time weight coefficient 0.7, name weight 0.3)

– (0.7 * time_weight + 0.3 * name_weight)

endThis design cleverly balances time decay and semantic matching, making the experimental items "memory". Community Health and Ecosystem• Niche Analysis️ Adoption & Application• Best Practice Scenario 1. Technology stack verification:

try graphql → Create 2025-08-17-graphql-experiment to avoid contaminating the main project 2. Temporary task processing:

try fix-123 → Quickly build a repair environment and automatically archive it after completion 3. Knowledge accumulation:

try design-patterns → Establish a searchable experimental case library• Potential risks and pitfall avoidance guide

️ Path dependency trap:

It is stored in ~/src/tries by default. It needs to be re-initialized after modifying TRY_PATH, otherwise historical projects cannot be accessed.

️ Git working tree limitations:

When using try. to create a working tree, the source repository must be a Git repository and in a clean state. Project Link Developer/Organization Quick Overview

Technical influence: As an active technology developer in 2008, his Ruby library (delayed_job) and tool chain projects (try, qmd) have accumulated more than 7.5k stars, and he has a medium-sized technical community influence in the field of developer tools and back-end infrastructure.

Technology stack preference: With Ruby as the core, supplemented by Shell script and TypeScript, it focuses on building lightweight, highly available development tools and back-end service components, reflecting the priority consideration of engineering efficiency and pragmatism.

Core areas: Focus on developer tools and back-end infrastructure, especially in the areas of asynchronous task processing (delayed_job), command line tools (try) and multi-language tool chains (qmd).

The Nine Best Blockchain Platforms

The fixed programming language created for developing blockchain smart contracts has become the crypto industry standard. This language is used for smart contracts on Etherum, the largest network for decentralized applications.

Robustness allows you to create Turing-complete smart contracts, meaning no third parties are required. The language is the foundation of Tendermint, one of the most advanced consensus mechanisms based on Byzantine Fault Tolerance (BFT) and the core of the Cosmos blockchain network. We'll review large platforms that support ruggedness.

Ethereum

Application of Solidity in Ethereum_Real-time Binance Coin Market_Blockchain Smart Contract Fixed Programming Language

Solidity was developed by the Etherum team, who also created a blockchain platform using this language. Today, the Ethereum network leads the world in smart contract-based projects. Etherum was founded in 2014 by Vitalik Buterin, one of the most influential figures in the crypto industry.

Etherum provides an ecosystem for the development of decentralized applications (DAPPs) and serves as the basis for the largest DEFI protocols such as Uniswap, MakerDAO, COMPLATE, AAVE and many others. In fact, this is not the advantage of Ethernet – the more applications, the heavier the load.

The rapid growth in Defi’s popularity clearly proves this. High user activity has led to unprecedented increases in transaction costs, sometimes exceeding $100 per transaction.

Over the 7 years of Ethereum's existence, a huge community has formed to support the platform. Despite its popularity, the Etherum network still has some scalability issues that make transactions slow and costly.

Developers are trying to fix this issue with an update to Etherum 2.0. The updated platform will use the Proof-of-Stake (PoS) consensus algorithm, which will be based on the tightening mechanism that emerged on the network after the London hard fork event. This means that part of the coins paid for Gas will be permanently burned and the amount of ETH issued will be reduced.

Ethereum Classic

Blockchain Smart Contract Fixed Programming Language_Real-time Binance Coin Market_Application of Solidity in Ethereum

Few people know that Ethereum Classic is the original Ethereum blockchain, which was "broken" after the hard fork. As a result, the notorious knife was hacked and the ETC coins became ERC-20 tokens. Recovering lost funds is necessary and major blockchains continue to function as forks.

Etherum Classic runs a proof-of-work algorithm, just like Etherum currently does. Proponents of the original blockchain are maintaining the original protocol. This is the main drawback of the platform, as the original blockchain limited cryptocurrency issuance to 210 million, etc., while ETH issuance will only decrease over time.

Despite these shortcomings, the Ethereum Classic token ranks 19th by market capitalization in the CoinMarketcap ratings, indicating strong support from the community. However, the outdated POW algorithm and lack of scalability do the platform no favors.

Polkadot

Real-time Binance Coin Market_Application of Solidity in Ethereum_Blockchain Smart Contract Fixed Programming Language

The platform uses a reliable language for smart contracts. The Polkadot ecosystem combines multiple blockchains into one network, making the platform scalable. These blockchains in the Polkadot Network are called parachutes. They increase network bandwidth and interact with each other. This property is called interoperability or, in other words, blockchain compatibility.

The Paracadot network is segmented, and unlike other blockchain networks such as Bitcoin or Ethereum, Paracchain is not isolated. They can process transactions in parallel, and if one network is overloaded, users can use another blockchain to conduct transactions.

Furthermore, this architecture allows a single blockchain to be optimized to solve specific tasks, such as identity management or data storage. Decentralized applications based on Polkadot will also be able to interact with each other. Polkadot is one of the main competitors of Etherum and other similar networks.

Binance Smart Chain

Blockchain Smart Contract Fixed Programming Language_Application of Solidity in Ethereum_Real-time Binance Coin Market

All projects and tokens based on the Binnis Smart Chat (BSC) ecosystem use smart contracts in a reliable language. BEP-20 tokens such as Binance Coin (BNB), Binance USD (BUSD), PancakeSwp (cake), and Venus (XVS) are robustly used in smart contracts.

Binnis Smart Chat Room is the second most popular decentralized application ecosystem after Etherum. The BSC network has better bandwidth, making transactions faster and cheaper.

Initially, Binance Coin (BNB) was created as an ERC-20 token based on the Ethereum blockchain. Later, Binance developers improved the smart contract and launched their own Binance main chain network, where the BNB token migrated and became a cryptocurrency. Then the Binance Smart Chat Room Network appeared, becoming an improved version of Binance Chain. Although BSC network has higher bandwidth compared to Ethernet, it has the same disadvantages. They are becoming apparent as blockchain becomes more popular. Under high load, transactions become slower and more expensive.

TRON

Blockchain Smart Contract Fixed Programming Language_Application of Solidity in Ethereum_Real-time Binance Coin Market

It is another large network for decentralized applications and the largest platform for blockchain games. TRON specializes in the entertainment industry, providing decentralized games, markets, and token exchanges.

The TRON architecture is based on the Ethereum blockchain. The platform was created in 2017 by Justin Sun, head of the non-profit TRON Foundation. Developers use solidity to create decentralized applications that are part of the TRON ecosystem.

TRON has been accused many times of plagiarizing the Ethereum architecture without introducing anything new. However, like Binnis Smart Chat, the TRON network has improved its scalability, making transactions fast and cheap. Furthermore, unlike Ethereum, the TRON blockchain is based on the POS consensus mechanism.

In reality, holders can trade freely by freezing TRX coins to obtain the energy that powers the platform. Aside from its narrow focus on the media industry, the TRON blockchain is no different from its competitors.

Uniswap

Real-time Binance Coin Market_Application of Solidity in Ethereum_Blockchain Smart Contract Fixed Programming Language

The ZCash team demonstrated tools for quickly developing their own smart contracts, Dapps and issuing Ethereum-based tokens. Users can quickly launch effective applications using the Solidity language with minimal programming skills.

Unlike centralized crypto exchanges, Uniswap does not rely on intermediaries, with liquidity providers providing liquidity to decentralized platforms. Users can simultaneously and securely exchange digital tokens on exchanges and earn income from liquidity mining by adding tokens to pools.

The main problem with Uniswap is its dependence on the Ethereum ecosystem. This means that it will suffer from the same problems as the main blockchain. As demand for the platform increases, more scaling issues will arise, forcing users to look for alternative platforms. This is what happened on Binnis Smart Chat Room. The high fees have caused many users to switch to BSC networks, which in turn has led to scalability issues.

Avalanche

Blockchain Smart Contract Fixed Programming Language_Application of Solidity in Ethereum_Real-time Binance Coin Market

The zhCash platform is based on a hybrid approach, providing the flexibility of Ethereum-based smart contracts. zhash combines blockchain and Ethereum Virtual Machine (EVM) to create flexible and efficient blockchain applications.

The ZCash team demonstrated tools for quickly developing their own smart contracts, Dapps and issuing Ethereum-based tokens. Users can quickly launch effective applications using the Solidity language with minimal programming skills.

Zchash is a Bitcoin fork with the Ethereum Virtual Machine. In other words, developers leveraged the best features of both protocols to create an innovative blockchain network.

The decentralized platform uses a combination of three consensus algorithms at once:

The zhCash network uses a separate full-size blockchain instead of the Ethereum blockchain. The independence of zhash makes it not tied to Bitcoin or Ethereum, so users can add new and improved features.

avalanche

Application of Solidity in Ethereum_Real-time Binance Coin Market_Blockchain Smart Contract Fixed Programming Language

Avalanche is an open, decentralized platform for creating Ethereum-based blockchain networks and applications, created by AVA Labs. The Avalanche Platform aims to replace Ethereum as the primary network for launching decentralized applications.

Developers have created their own Defi ecosystem. This caught the attention of crypto enthusiasts, with Avax becoming one of the fastest-growing tokens in 2020. Some well-known crypto projects, such as BZX, Reef, SushiSwp, and TrueUSD, have integrated their solutions with the Avalanche platform.

The Avalanche architecture is based on a subnet, also known as the main network, which is a set of validators responsible for ensuring the security of the entire network, confirming transactions and adding blocks.

The main network consists of three blockchains:

The developers demonstrated their own Avalanche virtual machine and a verified consensus algorithm called Snowball. The main difference from classic POS is that if a validator operates maliciously, Snowball will completely remove rewards instead of cutting them. While the concept seems interesting, blockchain experts are not sure whether Avalanche is a serious threat to ether.

Hedera Hashgraph

Application of Solidity in Ethereum_Blockchain Smart Contract Fixed Programming Language_Real-time Binance Coin Market

This network was built entirely from scratch, without using existing blockchain network technologies included in the global DEFI ecosystem. Note that the developers use the Solidity programming language, which proves its extensive capabilities for the development of advanced blockchain networks.

Instead of complex and time-consuming mining, the Hedera Hashgraph platform offers a different algorithm, Directed Acyclic Graph (DAG). Hedera Hashgraph is not a typical blockchain. This network is like a graph tree.

This structure is noteworthy because transaction speed increases as new transactions are added to the network. In other words, transactions in the Hedera Hashgraph network are processed and confirmed in parallel, rather than sequentially like in the Bitcoin or Ethereum networks. The goal is to achieve a throughput of over 100,000 transactions per second with minimal computational cost.

The Hedera Hashgraph team uses the same language as the creators of Etherum to develop smart contracts. Smart contracts in the Hedera Hashgraph network allow users to create their own Dapps for games, Defi platforms, digital identification, and more.

However, Hedera Hashgraph has a clear drawback: unlike most projects, the platform contains closed source code, which makes auditing complicated and making it impossible to reveal the founders’ intentions. Additionally, the creators of Hedera Hashgraph have patented the technology, so independent developers cannot create forks to improve the protocol operations.

in conclusion

Only a few platforms use the Solidity language to create architecture and smart contracts. However, this programming language has become a blockchain industry standard. After all, many leading platforms, such as Etherum, Binnis Smart Chat Room, Polkadot, etc., were created out of solidity. But most developers of these platforms are not following their own path. They are trying to replace Ether by replacing it in the DeFi ecosystem.

Rather than just competing with Etherum, zhash developers created a unique concept based on the most efficient blockchain properties. zhash uses a hybrid model of blockchain functionality, allowing validators and standard nodes to easily and quickly switch between consensus algorithms for the most efficient interaction.

Practical Dismantling Of AI Quantitative Trading System: The Whole Process From Construction To Implementation

In the field of quantitative trading, traditional systems are often limited by the lag of manual factor mining, the inaccuracy of market sentiment capture, and the high delay of order execution. The AI-driven comprehensive quantitative trading system precisely solves these pain points through the full pipeline closed loop of "data collection – AI analysis – strategy generation – risk control – real offer execution". This article will use a practical perspective, combined with mature system architecture (refer to the QuantMuse project), from environment construction, core module implementation to real-time simulation, to teach you step by step how to implement a usable AI quantitative trading system.

1. First understand: What is the core value of the AI ​​quantification system?

Before we start, we need to clarify the "irreplaceability" of AI in quantitative trading – it is not a simple "technical stack", but solves the three core problems of traditional quantification:

Factor mining efficiency improvement: Traditional manual screening of momentum, value and other factors takes several weeks, AI (such as XGBoost, neural network) can automatically identify effective features from massive data, and the efficiency is increased by more than 10 times; market sentiment dynamic capture: through NLP processing of news and social media texts, AI can output sentiment scores in real time, making up for the traditional pure technical analysis that "ignores market expectations" Defects; Enhanced strategy adaptability: LLM (such as GPT) can combine real-time market conditions to generate dynamic strategy suggestions to avoid the failure of traditional fixed strategies when market styles switch.

The system dismantled in this article is designed around these three points and has "production-ready" capabilities – supporting multi-exchange data, low-latency execution, and full-link risk control. It is by no means a laboratory-level demo.

2. The first step in actual combat: environment construction and configuration (pit avoidance guide)

The first step for the implementation of any system is to "run through the environment". This part is the easiest to encounter pitfalls (such as dependency conflicts, C++ compilation failure). We follow the steps of "minimum available → complete expansion":

1. Basic environmental requirements (must be met)

bash

# 克隆代码库(实战中替换为自己的仓库)
git clone https://github.com/0xemmkty/QuantMuse.git
cd QuantMuse
# 创建并激活虚拟环境
python -m venv venv
# Windows激活:venvScriptsactivate
# Linux/macOS激活:source venv/bin/activate

2. Dependency installation: choose as needed to avoid redundancy

The system supports "modular installation". Newbies are advised to install "Basic + AI + Visualization" first, which is enough to cover 80% of scenarios:

bash

# 基础+AI+可视化(推荐新手)
pip install -e .[ai,visualization]
# 如需实时数据(如WebSocket连接币安),再补充安装
pip install -e .[realtime]
# 如需Web界面(供团队共享数据),最后安装
pip install -e .[web]

3. Key configuration: API keys and data storage

To achieve "data acquisition + AI calling", an API key must be configured (not required, but without a key only public data can be used, and the functions are limited):

Copy the configuration template: cp config.example.json config.json; fill in the key (you need to apply for it yourself, such as Binance API, OpenAI API):

json

{
  "binance": {
    "api_key": "你的币安APIKey",
    "secret_key": "你的币安SecretKey"
  },
  "openai": {
    "api_key": "你的OpenAI APIKey"
  }
}

3. Data storage selection: SQLite for light use (single user), PostgreSQL for multi-user high concurrency, and Redis for real-time data caching (requires additional installation of Redis service).

3. Dismantling of core modules: implementation details from data to AI

The core of the system is "data-driven AI, AI-driven strategy". We follow the process of "data → AI → strategy → risk control" to dismantle the practical points of each module.

1. Data management: the “foundation” of quantitative trading

Without high-quality data, no matter how powerful the AI ​​is, it is useless. In actual combat, three issues of "data source, real-timeness, and cleaning" need to be solved:

python

# 从币安获取BTC/USDT的1小时K线(无需密钥,公开数据)
from data_service.fetchers import BinanceFetcher
fetcher = BinanceFetcher()
# 参数:交易对、时间周期、获取天数
btc_kline = fetcher.get_historical_data("BTCUSDT", "1h", 30)
print(f"获取到{len(btc_kline)}条BTC数据")

python

from data_service.realtime import BinanceWebSocket
def on_message(message):
    # 处理实时行情(如更新K线图)
    print(f"实时价格:{message['c']}")
# 初始化WebSocket,设置重连间隔5秒
ws = BinanceWebSocket("BTCUSDT", "1h", on_message, reconnect_interval=5)
ws.start()

Missing values: use forward filling (suitable for K-line data to avoid damaging timing); outliers: use the IQR method (interquartile range) to filter data exceeding 1.5 times IQR (such as sudden surges and falls); feature engineering: automatically calculate technical indicators (MA, RSI, MACD), code example:

python

from data_service.feature import TechIndicator
indicator = TechIndicator()
# 计算5日MA、14日RSI
btc_kline = indicator.add_ma(btc_kline, window=5)
btc_kline = indicator.add_rsi(btc_kline, window=14)

2. AI/ML module: the “brain” of quantitative trading

This part is the core of the system. In actual practice, it needs to focus on the three scenarios of "LLM market analysis, NLP emotion capture, and ML prediction":

python

from data_service.ai import LLMIntegration
llm = LLMIntegration(provider="openai")  # 初始化GPT连接
# 构造精准Prompt:结合因子数据+行情
prompt = f"""
基于以下BTC数据,回答2个问题:
1. 动量因子(5日收益率)1.2,波动率因子0.8,当前是否适合做多?
2. 若做多,建议持仓周期和止损点位(基于历史数据)?
数据:{btc_kline.tail(5)[['close', 'ma5', 'rsi14']].to_dict()}
"""
# 获取AI分析结果
analysis = llm.analyze_market(prompt)
print(f"AI建议:{analysis.content}")

python

from data_service.ai import SentimentAnalyzer
analyzer = SentimentAnalyzer()
# 输入新闻文本,输出情绪分数(-1负面,1正面)
news = "美联储加息预期降温,加密货币市场迎来利好"
score = analyzer.analyze(news)
print(f"新闻情绪分数:{score}")  # 输出约0.8(正面)

Practical training example (using XGBoost to predict the rise and fall of BTC):

python

from data_service.ml import XGBoostModel
from sklearn.model_selection import train_test_split
# 准备数据:特征(MA、RSI)、标签(下一根K线是否上涨)
X = btc_kline[['ma5', 'rsi14']].values
y = (btc_kline['close'].shift(-1) > btc_kline['close']).astype(int).values
# 划分训练集/测试集(时序数据不能随机划分!)
train_size = int(len(X)*0.8)
X_train, X_test = X[:train_size], X[train_size:]
y_train, y_test = y[:train_size], y[train_size:]
# 训练模型
model = XGBoostModel()
model.train(X_train, y_train)
# 预测准确率
accuracy = model.evaluate(X_test, y_test)
print(f"涨跌预测准确率:{accuracy:.2f}")

3. Strategic framework: the bridge from “backtesting” to “real offer”

Strategy is the carrier of AI implementation. In actual combat, three problems need to be solved: "scalability, reliable backtesting, and parameter optimization":

python

from data_service.strategies import BaseStrategy
class AIDrivenMomentum(BaseStrategy):
    def __init__(self, llm, ml_model):
        self.llm = llm  # 注入AI模型
        self.ml_model = ml_model
    def generate_signal(self, data):
        # 结合AI预测生成信号:1=做多,-1=做空,0=观望
        ml_pred = self.ml_model.predict(data[['ma5', 'rsi14']].values[-1:])[0]
        llm_signal = 1 if "适合做多" in self.llm_analysis else -1
        # 综合信号:AI预测和LLM建议一致才下单
        return 1 if ml_pred == 1 and llm_signal == 1 else (-1 if ml_pred == 0 and llm_signal == -1 else 0)

python

from data_service.backtest import BacktestEngine
# 初始化回测引擎:初始资金10000 USDT,手续费0.1%
engine = BacktestEngine(initial_capital=10000, fee_rate=0.001)
# 实例化自定义策略
strategy = AIDrivenMomentum(llm, model)
# 运行回测(用30天历史数据)
results = engine.run_backtest(strategy, btc_kline)
# 输出回测结果(关键指标)
print(f"年化收益:{results['annual_return']:.2%}")
print(f"最大回撤:{results['max_drawdown']:.2%}")
print(f"夏普比率:{results['sharpe_ratio']:.2f}")

python

import optuna
def objective(trial):
    # 待优化参数:止损比例(1%~5%)、持仓周期(1~5根K线)
    stop_loss = trial.suggest_float("stop_loss", 0.01, 0.05)
    hold_period = trial.suggest_int("hold_period", 1, 5)
    
    # 用该参数运行回测,返回年化收益(目标:最大化收益)
    strategy.set_params(stop_loss=stop_loss, hold_period=hold_period)
    results = engine.run_backtest(strategy, btc_kline)
    return results['annual_return']
# 运行优化(100次试验)
study = optuna.create_study(direction="maximize")
study.optimize(objective, n_trials=100)
print(f"最优参数:{study.best_params}")

4. Risk management: the “safety cushion” for quantitative trading

No matter how much profit you make, it can't withstand a "full position". Four risk control measures must be implemented in actual combat:

python

from data_service.risk import VaRCalculator
var_calc = VaRCalculator(confidence_level=0.95)  # 95%置信度
# 计算1天VaR:如10000 USDT本金,VaR=500,即95%概率下1天亏损不超过500
var = var_calc.calculate(btc_kline['returns'], initial_capital=10000)
# 头寸上限=本金*2%/(当前价格*合约乘数)(实战中需根据品种调整)
position_limit = (10000 * 0.02) / btc_kline['close'].iloc[-1]
print(f"BTC最大持仓:{position_limit:.4f}")

Maximum drawdown: no more than 5% for a single strategy, no more than 8% for the entire account; leverage: no more than 3 times for cryptocurrency, no more than 1.5 times for stocks; single product position: no more than 10% of the total account value (risk diversification).

python

from data_service.risk import RiskMonitor
from data_service.alert import EmailAlert
# 初始化警报:发送到指定邮箱
alert = EmailAlert(sender="your@email.com", receiver="risk@your.com", password="邮箱授权码")
# 初始化监控:当回撤超5%触发警报
monitor = RiskMonitor(alert, max_drawdown=0.05)
# 实时更新账户数据,触发监控
def update_account(account_value):
    monitor.check_drawdown(account_value)  # 检查回撤
    monitor.check_leverge(Current_leverge)  # 检查杠杆
# 模拟实时更新
update_account(9800)  # 账户从10000跌到9800(回撤2%,无警报)
update_account(9400)  # 回撤6%,触发邮件警报

4. Complete practical case: BTC/USDT strategy from backtesting to simulated real trading

We use a complete case to connect the previous modules to let you see the whole process of "from data to order":

1. Step 1: Obtain data and preprocess

python

run

# 1. 获取30天BTC/USDT 1小时K线
from data_service.fetchers import BinanceFetcher
from data_service.feature import TechIndicator
fetcher = BinanceFetcher()
indicator = TechIndicator()
# 获取数据
btc_kline = fetcher.get_historical_data("BTCUSDT", "1h", 30)
# 加技术指标(MA5、RSI14、MACD)
btc_kline = indicator.add_ma(btc_kline, 5)
btc_kline = indicator.add_rsi(btc_kline, 14)
btc_kline = indicator.add_macd(btc_kline)
# 计算收益率(用于回测)
btc_kline['returns'] = btc_kline['close'].pct_change()

2. Step 2: Training AI model (XGBoost rise and fall prediction)

python

run

from data_service.ml import XGBoostModel
# 准备特征和标签
X = btc_kline[['ma5', 'rsi14', 'macd']].dropna()
y = (btc_kline['close'].shift(-1) > btc_kline['close']).astype(int)[X.index]
# 训练模型
model = XGBoostModel()
model.train(X.values[:-200], y.values[:-200])  # 留200条做测试
# 测试集准确率
test_acc = model.evaluate(X.values[-200:], y.values[-200:])
print(f"模型测试准确率:{test_acc:.2f}")  # 若准确率>0.55,说明模型有效

3. Step 3: Backtest AI-driven strategies

python

run

from data_service.strategies import AIDrivenMomentum
from data_service.backtest import BacktestEngine
# 实例化策略(注入模型和LLM)
from data_service.ai import LLMIntegration
llm = LLMIntegration(provider="openai")
strategy = AIDrivenMomentum(model=model, llm=llm, stop_loss=0.03, take_profit=0.05)
# 回测
engine = BacktestEngine(initial_capital=10000, fee_rate=0.001)
results = engine.run_backtest(strategy, btc_kline)
# 输出回测结果
print("="*50)
print(f"回测周期:30天")
print(f"初始资金:10000 USDT")
print(f"最终资金:{results['final_capital']:.2f} USDT")
print(f"年化收益:{results['annual_return']:.2%}")
print(f"最大回撤:{results['max_drawdown']:.2%}")
print(f"夏普比率:{results['sharpe_ratio']:.2f}")
print("="*50)

4. Step 4: Start real-time simulation

python

run

# 1. 启动WebSocket获取实时数据
from data_service.realtime import BinanceWebSocket
# 2. 启动Streamlit仪表盘(可视化实时行情和策略信号)
import streamlit as st
from data_service.visualization import PlotKline
# 3. 模拟下单(实盘需替换为币安API下单接口)
def place_order(signal, price):
    if signal == 1:
        print(f"模拟做多:BTC/USDT,价格{price},数量0.001")
    elif signal == -1:
        print(f"模拟做空:BTC/USDT,价格{price},数量0.001")
# 4. 实时处理逻辑
def on_realtime_data(data):
    # 1. 处理实时数据(加指标)
    realtime_data = indicator.add_ma(pd.DataFrame([data]), 5)
    # 2. 生成策略信号
    signal = strategy.generate_signal(realtime_data)
    # 3. 可视化更新
    PlotKline.update(realtime_data)
    # 4. 模拟下单
    place_order(signal, data['c'])
# 启动WebSocket
ws = BinanceWebSocket("BTCUSDT", "1h", on_realtime_data)
ws.start()
# 启动Streamlit仪表盘(终端运行:streamlit run app.py)
st.title("AI量化策略实时监控")
PlotKline.init()

5. Practical pitfall avoidance guide: 90% of people will ignore these 5 problems. Data overfitting: "future data" is used in backtesting (such as using the closing price of day T to calculate the MA of day T). Solution: process strictly in chronological order, and feature calculation only uses data from T-1 and before; API call over limit: Alpha Vantage free version only has 5 calls per minute. Solution: use Redis to cache data, same request 10 No repeated calls within minutes; C++ backend compilation fails: Windows users need to ensure that Visual Studio is installed and "C++ Desktop Development" is checked, and Linux users need to install build-essential (command: sudo apt install build-essential); LLM's answer is unstable: GPT sometimes gives contradictory advice, the solution: use "multiple rounds of dialogue + result voting", such as letting GPT generate 3 It is recommended to take the majority result; the risk threshold is set too high: novices often set the maximum retracement to 10%, but the position will be lost after a black swan. The solution: refer to the maximum retracement of the strategy backtest, and then set it at a 20% discount (for example, the maximum retracement of the backtest is 5%, and the real offer is set to 4%). 6. Summary

The core of the AI ​​quantitative trading system is not "showing off skills", but "stable, reliable and implementable". This article breaks down the entire process of environment construction, data processing, AI models, strategy backtesting, and risk control from a practical perspective. You can start from the "minimum available version" (only data + basic strategy) and gradually iteratively add AI and real-time functions.

Thank you for paying attention to [AI Code Power]!

Cryptocurrency Justin Sun Won The 13th Corporate Legal Person Buffett Charity Luncheon

China Net Finance News, June 5 (Reporter Yang Chang) Yesterday, Justin Sun posted on Weibo that he successfully bought Warren Buffett’s 20th anniversary charity luncheon with a record high of US$4,567,888. He expressed his hope to invite celebrities in the blockchain industry to communicate with Buffett, thereby enhancing the understanding and friendship between top traditional investors and digital currencies. Justin Sun's Weibo mentioned that foreign media reported that "Justin Sun expressed his hope to fully communicate with Buffett about cryptocurrency and its underlying blockchain technology. Buffett expressed that he was very much looking forward to meeting with Justin Sun and his friends." Public information shows that Buffett once compared Bitcoin to "rat poison" and said that currency speculation is "similar to gambling."

A ChinaNet financial reporter confirmed to Sun on Weibo whether "bidding for Buffett's charity luncheon is a personal or corporate act", but did not receive a reply before publishing.

According to statistics from CoinMarketCap.com, Tron is the 11th largest cryptocurrency in the world by market value, with a market value of US$2.56 billion, while the market value of industry leader Bitcoin is nearly US$152 billion. There have been media reports that Tron's currency rose by 1.43% after the news was announced, and the price has increased by approximately 100% this year.

Sun Yuchen calls the bidding luncheon "pursuing mutual understanding and growth"

In a Weibo post after Justin Sun announced the successful bid, he talked about the TRON and BitTorrent projects. He wrote, "I am very happy to have lunch with Mr. Buffett, a senior alumnus. I believe that this time I can not only learn investment and life experience, but also a new starting point for the TRON and BitTorrent projects. It is also of great significance to the entire blockchain industry." (In July 2017, Justin Sun created the blockchain project "TRON" and is committed to building a global decentralized free content entertainment system.)

In addition, the Weibo post also included a "letter to the community." In the letter, Justin Sun talked about his views on Buffett's negative remarks about Bitcoin. "The CEO of Berkshire Hathaway has publicly stated that he believes that Bitcoin, the world's largest cryptocurrency, does not have "unique value." But he also pointed out the potential of blockchain as the underlying technology of all cryptocurrencies."

Justin Sun also talked about his purpose and views on this luncheon: "I believe that this luncheon with Buffett will be an opportunity to seek mutual understanding and growth. In order to enhance dialogue and support the entire cryptocurrency and blockchain community, I will invite several blockchain industry leaders to go to New York for the luncheon."

During his career in the currency circle, Justin Sun once declared that “34.2 billion TRX will be locked up until 2020” in response to the question of “cutting leeks”

According to public information, since 2013 to the present, Justin Sun has served as chief representative, special representative, and consultant of Ripple Labs Greater China. In 2014, he returned to China to found Ripple and served as CEO. Ripple also became China's first Internet technology company engaged in the development of decentralized clearing system products. In the same year, RippleLabs appointed Justin Sun as the chief representative of the Greater China Representative Office, fully responsible for all business in Greater China.

In July 2017, Justin Sun created the second project "TRON", with Li Feng and Xue Manzi as project investors. The project claims to be committed to building a global decentralized free content entertainment system, and its business model is ICO, which means issuing coins.

Public information shows that at 12:00 on August 22, 2017, TRON, a decentralized content protocol based on the blockchain, conducted a snap-up sale for a total of 500 million TRON official tokens (TRX) on Binance.com, one of the world's largest blockchain asset trading platforms. All shares were sold out within 53 seconds.

According to media reports, “Tron” completed its ICO a week ahead of schedule due to regulatory pressure. The next day, the regulator issued the "Announcement on Preventing Token Issuance Financing Risks", halting ICO activities and requiring the currency to be returned. Some media reported that Sun Yuchen had raised more than 400 million in funds at this time, and for safety reasons he returned the funds raised.

In April 2018, a self-media article stated that there were rumors in the circle that Justin Sun had converted TRX into Ethereum, cashed out 12 billion, and fled to the United States. According to reports, Justin Sun's wallet records show that he sends 200 million TRON coins to the trading platform every day to exchange for Ethereum, and has exchanged a total of 6 billion TRON coins for 19 consecutive days, cashing out nearly 12 billion based on the current price.

Justin Sun issued a statement refuting the rumors on the evening of April 9, 2018. The statement mentioned that "Tron Foundation holds 34.2 billion TRX and has publicly locked it up at a public address on December 19, 2017 to provide public supervision to the community. It has never reduced its holdings and cashed out, and the lock-up period is until 2020. This is in response to the question of 'cutting leeks'."

(Picture note: Screenshot of Sun Yuchen’s Weibo)

Sun Yuchen's encyclopedia uses a large space to display people's deeds and 13 corporate legal persons

The reporter noticed that Justin Sun’s Weibo profile was “Ruibo & Paiwo, Chairman and CEO, Founder of TRON Foundation, BitTorrent CEO.” His Weibo signature is "Jack Ma Yun Hupan University's first batch of students, Chairman and CEO of Paiwo APP Weibo signed a contract with self-media".

Baidu Encyclopedia shows that Sun Yuchen is an entrepreneur who returned from overseas after graduating from a prestigious school in the 1990s. His main achievements are listed in 8 items, with more than 6,000 words in the column about people and deeds, and 60 reference materials.

(Illustration: taken from Baidu Encyclopedia)

According to Qixinbao data, Sun Yuchen has 17 affiliated companies and serves as legal representative for 13 companies, mainly in the fields of software and information technology services, technology promotion and application services, and commercial services.

Will The Cryptocurrency Market Change Dramatically? FDIC’s New Regulations Release New Signals, And Banks Are Counting Down To Entering The Market!

On the 28th, the U.S. Federal Deposit Insurance Corporation (FDIC) issued new regulations clarifying that banks can carry out crypto-asset-related businesses without prior approval. This policy shift not only paves the way for U.S. banks to participate in the crypto market, but also triggers ripple effects around the world.

Banks carry out crypto-asset-related businesses_Real-time price of Binance Exchange official website_New U.S. Federal Deposit Insurance Corporation regulations

On March 28, 2025, the U.S. Federal Deposit Insurance Corporation (FDIC) issued the "Procedural Guidelines for Banks to Engage in Crypto-Related Activities" (FIL-7-2025), clarifying that FDIC-supervised banks can carry out crypto-asset-related businesses without prior approval (FDIC Clarifies Process for Banks to Engage in Crypto-Related Activities | FDIC.gov). This new regulation revokes the notification requirement for 2022 (FIL-16-2022), marking a major change in US regulatory attitudes towards banks’ involvement in the crypto field.

The following will provide an in-depth analysis of the impact of this guidance on the cryptocurrency market from four dimensions: regulatory impact, market confidence, bank participation, and changes in trading volume.

(Note: Based on the summary and analysis of public information on the Internet, reference sources are attached to the article and do not constitute investment advice. Please abide by the law)

Banks carry out crypto-asset-related businesses_New U.S. Federal Deposit Insurance Corporation regulations_Real-time price of Binance Exchange official website

1. Brief introduction to FDIC and FIL-16-2022

The FDIC is an important banking regulatory agency in the United States. It is responsible for the depositor protection of American banks and the resolution of bankrupt banks, and eliminates the risk of runs through the deposit insurance system. For example, when Silicon Valley Bank went bankrupt in 2023, the FDIC completed the repayment of insured deposits within 48 hours and recovered funds through asset auctions.

In order to avoid bank bankruptcy, the FDIC pays special attention to the review and supervision of financial indicators such as bank capital adequacy, liquidity, compliance, risk management, and risk ratings.

The revoked FIL-16-2022 is a regulatory requirement introduced in 2022 to deal with the risks of cryptocurrency. The core is that if banks want to engage in cryptocurrency-related business, they need to apply for approval in advance.

2. U.S. regulatory deregulation and global linkage 2.1. Local regulatory changes in the United States

The FDIC’s new guidelines remove the requirement for banks to apply for prior approval to conduct crypto business, and instead allow banks to independently participate in crypto asset activities within the “permissible” scope, but emphasize that they must follow the principles of safety and soundness and do a good job in risk management.

This means that Bank of America has greater autonomy in various types of encryption businesses such as custody, stable currency reserves, issuance of digital assets, and node operations. FDIC Acting Chairman Travis Hill said that the new policy is "a reversal of the flawed practices of the past three years" and that the FDIC will take a series of measures to provide new paths for banks to participate in encryption and blockchain activities. He criticized previous regulations for discouraging innovation through non-public means and acknowledged that banks had not been given clear guidance in the past.

This change in stance is consistent with the actions of the U.S. Office of Comptroller of the Currency (OCC): The OCC also clarified in early March that national banks can carry out crypto custody, stablecoin payments and other businesses, and revoked the old guidance requiring pre-approval.

As for the Federal Reserve, Governor Michelle Bowman also agreed in the same speech that "legitimate companies should not be excluded from the banking system in the name of regulatory policies" and called for a "reasonable and supportive" regulatory attitude towards new technologies.

Overall, U.S. regulatory agencies, under the leadership of the new government, are returning to the main line of "supporting innovative development", easing compliance resistance but requiring banks to strengthen their own risk controls. This will enable the U.S. banking industry’s compliance requirements for encryption businesses to shift from “pre-licensing” to “on-the-fly monitoring”, maintaining high standards in anti-money laundering, network security, consumer protection, etc., while not erecting unnecessary obstacles to new businesses.

2.2. Potential effects in Europe

The shift in U.S. policy immediately attracted European attention. To put it bluntly, the European Union does not want the negative impact of digital dollar hegemony on Europe.

Eurozone finance ministers discussed the new stance of the United States on March 10, 2025, expressing concerns that the United States’ embrace of crypto-assets may affect Europe’s monetary sovereignty and financial stability. Eurogroup Chairman Donoghue made it clear that he linked this issue to Europe's own autonomy and the resilience of the euro, and emphasized that the launch of a digital euro has become even more critical.

Villeroy, executive member of the European Central Bank and President of the Bank of France, warned: "The United States' encouragement of crypto assets and non-bank finance may be sowing the seeds for future turmoil." Once a financial crisis occurs, it may come from the United States and Europe. It can be seen that European regulators are cautious about the encryption-friendly policies of the United States and are worried about the expansion of US dollar-denominated stable coins in the euro zone.

However, on the other hand, the EU itself is also advancing the framework: the "Crypto Asset Market Regulation" (MiCA) passed in 2024 sets licenses and specifications for stablecoin issuance and encryption service providers, and supports innovative development under the premise of "clear regulatory requirements."

Some large banks in Europe have already laid out their digital asset business in advance. For example, Standard Chartered Bank has obtained a Luxembourg license to carry out crypto custody, and Societe Generale has issued Euro stablecoins. This shows that the EU's overall strategy is to strictly control risks while not giving up digital financial innovation.

The U.S. policy shift may prompt the EU to accelerate the implementation of MiCA and strengthen the digital euro process to prevent the impact of U.S. dollar crypto assets on the euro system while ensuring that Europe does not fall behind in a new round of financial innovation.

As for the UK, although it has left the EU, it has similar concerns to the EU in terms of financial supervision.

On the one hand, large British banks (such as HSBC and SCB) pay close attention to U.S. trends due to their global business; on the other hand, the British government announced its vision of building a "global crypto asset center" as early as 2022. Under the new policy environment, the United Kingdom may be more active in promoting its own version of crypto regulatory reform and releasing signals to support innovation in sync with the United States.

In short, all walks of life in Europe are taking the lead in the United States to prevent risks and promote regulations. The policy tone may be fine-tuned but there will not be extreme changes in deregulation.

2.3. Singapore continues to open up

The Monetary Authority of Singapore (MAS) has taken an open and cautious attitude towards the crypto industry in recent years, and the US move is expected to strengthen this trend.

In fact, Singapore has already adopted a license system to manage digital payment token exchanges, allowing Crypto.com, Coinbase Singapore, etc. to operate under licenses, and will release a regulatory framework for stablecoins in 2023 (requiring single-currency stablecoins to have sufficient reserves, etc.).

MAS also leads projects such as "Project Guardian" and explores the application of DeFi (Decentralized Finance) in the financial market with banks such as JPMorgan Chase and DBS. As it is already at the forefront of regulating innovation, Singaporean regulators may not respond directly to the FDIC statement, but the loosening of US regulations has reduced Singapore's concerns, proving that its policy of "supporting regulated innovation" is correct.

It is foreseeable that MAS will continue to improve local regulations (such as expanding guidance on banks' custody of cryptoassets and promoting more institutional-level innovation pilots), and strengthen cooperation and communication with the United States and Europe through international forums (such as the Financial Stability Board and the Basel Committee).

Overall, Singapore will view the U.S. pivot as a positive sign, cementing its position as Asia-Pacific’s crypto-finance hub.

2.4. Hong Kong follow-up strategy

Hong Kong has restarted its encryption hub strategy in 2023, and the new decree will undoubtedly add impetus to it.

The Hong Kong Monetary Authority (HKMA) sent a letter to banks in April 2023, clearly requiring support for the banking service needs of licensed crypto exchanges and not excessively raising the due diligence threshold.

At that time, banks such as Standard Chartered, HSBC, and Bank of China Hong Kong were cautious due to concerns about regulatory risks. In response, the HKMA emphasized that "do not let due diligence become an unnecessary obstacle." Now that the United States has lifted its implicit restrictions on banks, international banks will have less concerns about providing encryption services in Hong Kong. The previous efforts of Hong Kong regulators have been confirmed.

Since 2024, Hong Kong has issued the first batch of virtual asset exchange licenses and continues to promote the implementation of stable currency regulatory arrangements. It is expected that the Hong Kong Monetary Authority and the Securities Regulatory Commission (SFC) will take the opportunity to increase publicity to show that Hong Kong's regulatory environment is in line with the latest international trends, and encourage local and overseas banks and financial institutions to carry out compliant encryption businesses in Hong Kong.

In fact, Hong Kong is actively recruiting mainland and overseas crypto companies, and "seizing the opportunity of the U.S. shift" is expected to attract more trading volume and companies to Hong Kong. It is worth noting that the Hong Kong subsidiaries of Bank of China Hong Kong and China Construction Bank Asia with Chinese backgrounds have previously kept a low profile due to the mainland's attitude. However, as policies become clearer, these banks' participation in digital asset innovation in Hong Kong may accelerate.

In terms of regulatory response, Hong Kong government officials have repeatedly expressed in public recently that they welcome the world's balanced policy on encryption, emphasizing Hong Kong's institutional advantages.

It can be expected that Hong Kong will strengthen its "regulatory sandbox" and "firewall" mechanisms: on the one hand, it will maintain separation from mainland regulations and avoid cross-border risks; on the other hand, it will make full use of the increased confidence of U.S. and international capital in the compliant encryption market to consolidate and expand Hong Kong's influence as a bridgehead for the compliant encryption market.

Generally speaking, mainland China continues to use Hong Kong as a bridgehead for encrypted digital currencies, which can isolate risks without completely breaking away from new trends in the world, so as to maintain a situation in which it can advance, attack, and retreat.

2.5. Mainland China continues to exert high pressure

Mainland regulatory authorities still adopt a high-pressure ban on cryptocurrency transactions (digital currency transactions, mining and other activities are strictly prohibited). In the short term, U.S. deregulation will not directly change mainland China’s policy orientation.

Official media and regulatory agencies are likely to maintain their consistent tone, emphasizing the risks of crypto speculation, saying that previous strict supervision has effectively isolated external risks. This point can also be found in the warnings of some European officials (that the United States' vigorous development of cryptocurrency may cause crisis risks and adversely affect Europe), and the mainland may use this to support the necessity of its financial risk prevention policies.

However, some Chinese economists have begun to call for a review of global trends. Shen Jianguang, vice president of JD.com and an economist, wrote that the United States has shifted its focus to promoting responsible innovation and development, and the new framework is expected to attract more institutions and technological innovations and strengthen the United States' dominant position.

He specifically reminded that as the world's largest crypto market, the policy shift of the United States has a huge driving effect on other countries, including the European Union, the United Kingdom, Japan, Singapore, the United Arab Emirates, etc., which are all formulating regulations to support the development of stable coins and cryptography. It is recommended that China pay close attention to and conduct a comprehensive evaluation. This shows that domestic think tanks are beginning to worry that China will fall behind due to "one size fits all" in this round of financial technology competition.

It is expected that mainland officials will not relax the transaction ban in the short term, but may double investment in areas such as blockchain technology and digital renminbi to cope with the development of overseas crypto finance. At the same time, it is not ruled out that regulators may study and formulate new policies in a low-key manner: while insisting on prohibiting currency speculation, they will also provide certain guidance for domestic enterprises to participate in international digital financial cooperation (such as cross-border trade currency, overseas listed companies’ chain-related business).

In short, mainland China’s regulatory attitude is still mainly wait-and-see and risk warning in the short term, but in the long term, it does not rule out adjusting the regulatory framework for legal blockchain applications and tokenized asset transactions after evaluating global experience to avoid being at a disadvantage in digital economic competition.

3. Changes in investor sentiment and risk preferences

The release of new guidance from the FDIC and the overall shift in the U.S. regulatory environment have significantly boosted the confidence of market participants. Overall, investor sentiment has turned from wait-and-see to optimism, and risk appetite has increased. The specific manifestations are as follows:

Investor sentiment picked up and prices responded positively.

The United States clearly supports banks' participation in encryption, which is regarded as an important milestone in the further mainstreaming of cryptocurrency, and investors are therefore inclined to increase allocations. In fact, since the results of the US election were clear at the end of 2024, the price of Bitcoin has rebounded sharply. Although it has fallen back somewhat, it is still as high as $80,000. Industry analysts attribute this to the new administration making encryption policy a national priority and providing regulatory clarity.

After the release of the FDIC statement, although the prices of Bitcoin and Ethereum fluctuated in the short term, they generally remained at a high level, indicating that the market has factored in most of the positive regulatory benefits. Crypto-related stocks also performed strongly: Take the US Coinbase exchange as an example, its stock price has continued to rise since the first quarter in anticipation of an improvement in the regulatory environment. Bernstein and other institutions predict that Coinbase's stock price is expected to rise another 64% from the current level, on the grounds that clear U.S. regulatory clarity will push encryption deeper into the financial mainstream.

There are also signs of increased risk appetite in traditional financial markets. For example, some chain-related concept stocks (mining companies, blockchain companies) in the U.S. stock market outperformed the market after the news was released.

Overall, policy easing has swept away the cloud of uncertainty that has shrouded the market, with investor confidence rising and buying willingness increasing.

Market evaluation and media opinions diverge.

The crypto industry responded enthusiastically to the guidance, while the mainstream media was relatively rational and positive.

Rob Nichols, president of the American Bankers Association (ABA), publicly praised the FDIC’s new guidance, saying he “welcomes the FDIC’s decision to allow regulated institutions to conduct crypto-related businesses without prior approval,” noting that such regulatory clarity is critical to promoting innovation. This kind of endorsement from the top management of traditional finance has greatly enhanced the market's confidence in the durability of the policy.

Crypto media such as Decrypt and CoinDesk have described this move as a "major turning point", believing that this marks the end of the United States' "Operation Chokepoint 2.0"-style suppression. Many commentators compared it with the conservative approach of the previous government and believed that the current policy is friendly and open.

At the same time, some conservative voices also appeared in the media. Some financial commentators warn that the regulatory shift could lead to bubbles and accumulation of risks. ECB officials bluntly stated that the U.S. move may "sow the seeds of a financial crisis." Some traditional economists in China used Wall Street's bubble in the 1930s as a metaphor, joking that "the next Wall Street crash may make people miss the Great Depression." These voices have generated certain risk warning reports in the mainstream media.

But overall, the tone of the media is positive: when reporting on this matter, mainstream U.S. financial media (such as the Wall Street Journal, Reuters, etc.) focused on how the policy can lift the shackles of industry development and the positive reactions of all parties. For example, Reuters mentioned that the new regulations "completed a major shift in federal bank policy" and cited the views of market participants to affirm its significance. This kind of positive public opinion guidance has further consolidated investor confidence. New dynamics emerged in risk appetite and capital flows.

With regulatory endorsement, market participants’ risk appetite has significantly increased.

In the past few years, due to regulatory uncertainty, many institutional investors and commercial banks were cautious or even wait-and-see about getting involved in crypto. Now with clear policies, many institutions have begun to include crypto as a legal asset class in their strategic allocations. The CEO of DBS Bank Digital Exchange pointed out that professional investors are increasingly considering digital assets as a "legitimate part" of alternative investment portfolios.

U.S. hedge funds and family office funds reportedly returned to the Bitcoin market in large numbers in the first quarter, partly in response to the policy shift.

At the same time, the increase in market risk appetite is also reflected in the decline in volatility: after the introduction of good news, the volatility index of Bitcoin and others fell for a time, indicating that investors have weakened their expectations for downside risks and are more willing to hold them for the long term.

From the perspective of capital flows, the net inflow of stablecoins has increased, and investors are more confident about entering the market through stablecoins such as USDC and USDT, because the United States allows banks to hold stablecoin reserves, which is interpreted as official recognition of mainstream stablecoins. USDC issued by Circle received capital inflows in late March and returned to 1:1 anchoring. The shadow of trust that had previously plagued its development (such as the brief de-anchoring caused by bank failure) has obviously dissipated.

Generally speaking, the policy shift has made venture capital more willing to invest in crypto start-up projects, institutional investors have become more bold in allocating assets other than Bitcoin (such as Ethereum, Solana, etc.), and the sentiment of the entire market has changed from defensive to aggressive. Under this positive feedback mechanism, market confidence has improved significantly, laying the foundation for subsequent trading activity and market value growth.

4. Boost from traditional banks getting involved in crypto business

The new FDIC guidelines have undoubtedly lowered the threshold for traditional banks to enter the crypto field and are expected to significantly affect the participation of major banks in crypto asset-related businesses. In general, this move will encourage more banks to try services such as custody, payment, DeFi and trading, but the responses of different banks may vary depending on their geographical strategies.

In the context of deregulated regulation, all types of banks in the United States, from community banks to large banks, have shown a higher willingness to participate.

The chairman of the American Banking Association's statement has conveyed a unified voice: the banking industry welcomes regulatory clarity and actively evaluates how to "compete safely and responsibly." This means that plans previously put on hold due to uncertainty will be restarted. For example, there are reports that more than 20 U.S. banks have received informal letters from regulators asking them to suspend their encryption business attempts, and now these institutions are expected to resume related projects.

On Wall Street, large investment banks and custodian banks are also moving quickly – Wells Fargo, Bank of America and others have established internal working groups to study the risk control requirements for crypto custody; asset management giant Fidelity has already been involved in digital assets and is expected to expand its service scope.

It is foreseeable that the U.S. banking industry will gradually move from marginal involvement (such as providing channels for customers to invest in Bitcoin funds) to directly providing encryption services (self-operated custody, trading, etc.), and the boundaries between traditional finance and digital asset ecology will become increasingly blurred.

The following lists the trends of some well-known banks to reflect the changes in bank participation in different regions:

Banks carry out crypto-asset-related businesses_Real-time price of Binance Exchange official website_New U.S. Federal Deposit Insurance Corporation regulations

The above-mentioned bank cases show that the interest of global banks in participating in encryption has increased significantly. Major American banks have begun to regard encryption as one of their legitimate business lines; European and Asian banks have been gradually piloting and expanding related services. It is foreseeable that more traditional banks will announce their entry into this field in the medium term: US custodian banks such as State Street Bank and Wells Fargo are planning to launch digital asset custody services as early as 2026 to meet strong customer demand.

These developments suggest that banks recognize that missing out on the crypto wave could mean losing future market position.

The new guidance serves as a “positive demonstration”: global banking regulators will pay close attention to the U.S. experience to remove obstacles or provide guidance and coordination for banks to participate in encryption in their respective jurisdictions. Of course, banks’ large-scale foray into crypto also depends on supporting policies (such as capital adequacy requirements). The Basel Committee has developed a framework for capital provisions for banks’ holdings of crypto-assets, and these prudential regulatory requirements remain a boundary condition for bank participation.

But overall, the FDIC's new policy has greatly raised the upper limit of bank participation: it sends a clear signal – compliant encryption business is no longer prohibited "one size fits all", but is recognized by supervision and will receive further guidance support. This will undoubtedly accelerate the integration of traditional finance and encryption markets, bringing more institutional funds, professional talents and reliable infrastructure to the encryption market.

5. Short-term fluctuations and mid- and long-term trend predictions 5.1. Short-term trading volume trends after the news is released

After the announcement of the FDIC guidance, the trading volume of major crypto assets showed obvious signs of amplification. The market interpreted the favorable regulations as a bullish signal, and buying activity increased. On the day the news was released and in the days that followed:

Bitcoin (BTC) and Ethereum (ETH): As a market benchmark, Bitcoin’s trading volume increased at the end of March. According to statistics, the 24-hour transaction volume of Bitcoin on March 29 was approximately US$27.06 billion. This level is somewhat higher than the average weekly level of the week before the news (Bitcoin’s average daily trading volume in mid-March was about 20-25 billion US dollars), indicating that a large number of funds quickly entered the market or adjusted positions after the news came out.

The futures market was also quite active during the same period, with CME Bitcoin futures positions reaching a new annual high, indicating that institutional investors also participated in the market reaction. In terms of Ethereum, the price is relatively sluggish but the trading volume has increased simultaneously – on March 27, the single-day trading volume of ETH exceeded US$20 billion, which was the first time in several months. This may reflect that investors expect Bitcoin to be more directly driven by favorable policies, and at the same time they also adjust some funds to mainstream currencies such as ETH during high prices, resulting in an increase in ETH volume and a stable price.

Overall, the total transaction volume of BTC and ETH increased by 10-20% month-on-month in the week after the policy was announced, indicating ample market liquidity.

Stablecoins (USDT, USDC, etc.): As a trading medium, stablecoins’ transaction and circulation scale has also increased simultaneously. In the week when the news was announced, USDT’s on-site trading volume on major exchanges once accounted for more than 60% of the total market trading volume, which shows that a large amount of funds poured into the digital dollar system from legal currency.

USDC market sentiment has also improved: the proportion of USDC transactions in many trading pairs has increased, indicating that investors’ trust in USDC is recovering (in contrast to the banking crisis in March 2023). According to blockchain data, the total amount of on-chain transfers of stablecoins jumped between 2024 and 2025: monthly transfer volume has increased from US$1.9 trillion in February 2024 to US$4.1 trillion in February 2025, an increase of 115%.

The growth rate during this year is quite astonishing, partly due to the policy shift in the first quarter of 2025 to attract large amounts of funds in and out through stablecoins, which accelerated circulation. As Reuters analysis stated, stablecoins are now a key cog in the multi-trillion-dollar crypto trading market, undertaking the function of moving funds between different currencies and legal currencies. The United States' statement of allowing banks to hold stablecoin reserves will further consolidate the status of USDT, USDC, etc. as trading infrastructure. In the short term, their trading volume and issuance market value have shown an upward trend. It is worth mentioning that World Liberty Financial, supported by former U.S. President Trump, plans to launch a new U.S. dollar stable currency "USD1" and says it will be fully supported by reserves such as U.S. Treasury bonds and cash. This news attracted market attention in late March. The addition of new stablecoins may lead to a battle for the market share of existing stablecoins. However, in the short term, USDT and USDC still firmly dominate, ranking among the top in terms of trading volume.

Mainstream trading platforms: The trading volume of major crypto exchanges in the United States, Europe and Asia increased overall under the influence of the news. Among them, in the U.S. market, compliant exchanges such as Coinbase and Kraken have benefited significantly – favorable regulations have prompted some platform funds that had previously moved offshore to return to the country. Coinbase's single-day spot trading volume at the end of March increased by about 20% from the beginning of the month, and the rise in its stock price also reflected the increase in trading activity. Kraken’s volume on USD trading pairs also amplified.

In comparison, global platforms such as Binance and OKX are still ahead in terms of size. Binance’s 24-hour global spot trading volume in the week of the announcement was stable at tens of billions of dollars, more than twice that of the second largest exchange. This shows that despite regulatory changes in the United States, Binance and others have a large user base in Asia Pacific and Europe and still occupy the leading position in transaction volume in the short term.

However, it is worth noting that changes in U.S. policies may push Binance US and others to adjust their strategies and even seek closer cooperation with U.S. regulations in terms of compliance to retain local users.

In the Asian market, exchanges such as OKX and Huobi maintain high popularity among Chinese-speaking and Southeast Asian users, and their BTC and ETH trading volumes increased by double digits at the end of March.

In addition, the Korean market has always responded quickly to regulatory and market changes. The day after Upbit, South Korea's largest exchange, announced good news in the United States, the trading volume of the Bitcoin Korean Won pair surged, and its ranking once jumped to second place in the world, second only to Binance. This reflects that Asian retail investors are encouraged by international policy signals and actively enter the market. In Hong Kong, the trading volume of newly licensed exchanges (such as OSL and HashKey) is still at a small start, but favorable regulations have attracted more local investors to try to open accounts, which has also laid the foundation for the future growth of these platforms.

5.2. Mid- to long-term trend outlook

Looking to the mid-to-long term, crypto market trading volume is expected to maintain growth and undergo structural changes under the new regulatory environment:

Overall transaction volume continues to rise.

As traditional financial institutions enter the market and more investors participate, the depth and breadth of the crypto market will expand. The participation of institutional investors will bring huge incremental funds, making the market's average daily trading volume expected to reach a higher level than the current level. Some analysts predict that if the macro environment cooperates and supervision remains friendly, the price of Bitcoin may hit a new high in 2025, and its global daily transaction volume may reach hundreds of billions of dollars by then. The daily trading volume center of the entire crypto market will also increase with the increase in market capitalization.

Although there is still a gap between the average daily volume of the foreign exchange market of US$7.5 trillion, the encryption market, as an emerging asset, is growing much faster than the traditional market – the annual growth rate of transaction volume is expected to remain at double digits, higher than the growth rate of the stock and foreign exchange markets. Especially considering the transactions of derivatives and on-chain DEX (decentralized exchanges), these parts that are not fully reflected in traditional statistical calibers are also expanding rapidly.

The regional market is changing, and the share of compliance platforms is increasing.

In the long term, as regulatory frameworks in various regions improve, global transaction volumes may become more geographically dispersed and balanced. Currently, Asia (including transactions by North American users on offshore platforms) accounts for about half of the global volume, while Europe lags behind. In the future, Europe has the potential to increase the proportion of European time zone trading volume after MiCA is implemented and the trading platform obtains compliance status. At the same time, the domestic market share of the United States is expected to rebound: over time, U.S.-compliant exchanges (such as Coinbase) and Wall Street’s traditional market makers will occupy a larger proportion of the trading volume list. Once the United States approves spot ETFs such as Bitcoin, a large amount of trading volume will flow between exchanges and traditional markets through ETF arbitrage and other forms, which will also significantly increase the trading volume during the daytime period in the United States. Accordingly, the market share of giants such as Binance may be gradually eroded, and the market will move from "one super and many strong" to "multi-polar competition." However, since Binance and OKX already have a large user base and liquidity network, it is expected that they will still maintain the lead in Asia and emerging markets, but their share will decrease relatively. In addition, exchange compliance will lead to healthier volumes: as false wash volume and the like are curbed, the quality of reported trading volumes increases.

In the long term, the rise of compliance platforms in various countries will help put an end to the "wash sales" criticized in the industry and allow true supply and demand to be reflected in transaction data.

Trading varieties and structures evolve.

In the medium to long term, the composition of transaction volume may change—the proportion of Bitcoin and mainstream currencies decreases, and the proportion of other assets increases. As the market matures, investors will not only trade "blue-chip" coins such as Bitcoin and Ethereum, but will also participate more in the transactions of new varieties such as tokenized physical assets and central bank digital currency (CBDC). For example, if the United States launches a Bitcoin ETF or a new type of treasury bond token backed by government-held Bitcoin reserves, its transactions may divert some transactions of traditional crypto assets. In addition, if CBDC issued by central banks of various countries can be interoperable, they may also enter the market through trading pairs similar to stable currencies. The transaction volume in the DeFi field is also expected to increase and occupy a place – after banks enter DeFi, they may launch compliant decentralized trading platforms or liquidity pools, allowing some transactions to be migrated to the chain for completion. Although these changes will be limited in scale in the short term, in the long run, the "crypto market" will no longer refer only to Bitcoin, but will include a wider range of digital financial products, and its transaction volume statistics will also need to keep pace with the times. It can be expected that in the medium to long term, the trading ecology of the crypto market will be more diverse and the distribution of volume and energy will be more balanced.

Improved liquidity and reduced volatility.

Increased trading volume usually means greater market liquidity and thicker buying and selling orders. In the medium to long term, this should help reduce price volatility and reduce the possibility of a single large player manipulating the market. Especially when banks and licensed institutions participate in market making, the market depth is greatly increased and can absorb larger transactions without impacting prices. However, it should be noted that new entry of funds may also bring risks such as increased leverage transactions. If excessive leverage accumulates, it may amplify short-term fluctuations. Therefore, we expect the overall volatility of crypto assets to trend downward (gradually approaching the levels of traditional assets) in the medium to long term, but may still experience severe oscillations under specific events (such as negative macro or changes in regulatory winds). The continued improvement of supervision and the development of risk management tools (such as options, futures and other derivatives markets) will be important factors in calming volatility.

6. Conclusion

In summary, the new guidelines issued by the FDIC not only have an immediate impact on the U.S. banking industry's participation in the crypto market, but also enhance global market confidence through the regulatory "demonstration effect" and promote the injection of traditional financial forces into this emerging field.

In the short term, the trading volume of major crypto assets and trading platforms has increased significantly, and market sentiment is optimistic. In the medium to long term, under the dual effects of regulatory support and the influx of institutions, the crypto market is expected to usher in a new stage of steady expansion in transaction volume and optimization of the participant structure.

Of course, easing supervision does not mean laissez-faire – how local supervision refines rules and harmonizes international standards will determine how far this “encryption trend” can go.

Overall, the FDIC's new policy sends a positive signal: as long as risks are controllable and compliance is in place, the development space of the cryptocurrency market will be further opened up, and its trading activity and integration with traditional finance will increase significantly in the next few years.

(over)

Bitcoin Hits $100,000, Global Financial Regulations Are Catching Up

On December 17, 2024, the price of Bitcoin reached a record high of $107,000.

The direct reason is the change in the attitude of the US government. The newly elected U.S. President Trump recently stated publicly that the next U.S. government will be committed to creating a friendly regulatory agency for cryptocurrency. He has vowed to make the United States a "cryptocurrency capital."

Since Trump was elected, the price of Bitcoin has risen by more than 40% from US$60,000. The ups and downs of prices not only affect the nerves of investors, but are also reshaping the landscape of global financial supervision.

Unlike the Biden administration's crackdown on digital assets, Trump has publicly stated more than once that he wants to implement "friendly regulation" of cryptocurrencies.

Trump has recently nominated former Paypal COO David Sacks to serve as the White House head of artificial intelligence and cryptocurrency affairs, indicating his intention to promote the development of the encryption industry. At the same time, Atkins, a conservative lawyer and currency fan, was also nominated to head the US Securities Regulatory Commission.

The steady rise in cryptocurrency assets is related to the "catch-up" between financial regulations in various countries.

At the end of November 2024, ZA Bank, the first and largest digital bank in Hong Kong, announced that it had become the first bank in Asia to provide cryptocurrency trading services to retail users. The bank provides services to users by cooperating with Hashkey Exchange, a licensed virtual asset exchange in Hong Kong.

On December 6, 2024, the Hong Kong Special Administrative Region government published the "Stable Currency Bill" in the Gazette, intending to introduce a regulatory system for fiat currency stable currency issuers in Hong Kong. The Bill is scheduled to be submitted to the Legislative Council for its first reading on December 18. A stablecoin is a virtual asset that maintains a stable value with reference to some asset, usually a fiat currency.

Reasons why Bitcoin price will hit a new high in 2024_Real-time Binance Coin Market_Trump’s attitude and measures towards cryptocurrency

Bitcoin ETF advertisement on Hong Kong tram. Visual China Map

“It is still not feasible for mainland residents to go to Hong Kong to buy currency.”

When a reporter from Southern Weekend opened the Zhongan Bank App, the home page prompted users to buy and sell cryptocurrencies directly in Hong Kong dollars and US dollars without switching to other apps or platforms.

According to the company announcement, after Hong Kong residents open an investment account with Zhongan Bank, they need to complete the risk assessment and other processes before they can buy and sell two currencies on the app. The entry fee is US$70 or HK$600 respectively, and the commission fee for each transaction is 1.99. US dollars or HK$15, and the platform fee is 1.5% of the transaction amount (the minimum fee per transaction is US$1.99 or HK$15). The bank will waive transaction commissions until the end of June 2025, and the platform fee will also be reduced to 0.8% of the transaction amount.

The company's CEO, Wu Zhonghao, told the media that Hong Kong will only provide retail investors with virtual currency trading services in 2023. The bank has been preparing for the service for nearly a year. In addition to compliance standards, the trading time is 24 hours. Due to the high risk level of the assets, marketing will also focus on user education.

Currently, the Hong Kong Securities and Futures Commission has launched 4 types of cryptocurrency assets for retail investors to buy and sell. Wu Zhonghao said that this time ZhongAn will launch Bitcoin and Ethereum transactions first, and will gradually add the remaining two virtual currencies in the future. At the same time, he also pointed out that ZhongAn turned a loss into a profit in a single month in July 2024. After deploying the virtual currency trading business, it hopes to increase fee income and attract new customers, which will play a positive role in turning a loss into a profit.

Xiao Sa, a senior partner at Beijing Dacheng Law Firm, explained to Southern Weekend reporters that according to the current relevant laws between the mainland and Hong Kong, it is still not feasible for mainland residents to go to Hong Kong to buy currency.

She explained that although ZhongAn Bank allows customers from all over the world to register on the mobile app, ZhongAn did not directly obtain the crypto asset exchange license itself, but cooperated with the licensed exchange HashKey to assist users in trading crypto assets through the platform. Therefore, it must comply with the relevant regulations of Hong Kong's licensed exchanges.

The requirements at least include holding a Hong Kong identity card, being able to provide proof of your address and phone number, and undergoing relevant financial risk assessments.

In addition, Zhongan Bank will limit the proportion of crypto assets held by users. According to Wu Zhonghao's statement, this proportion will be controlled within 20% of the customer's total investment assets.

In September 2021, the "Notice on Further Preventing and Dealing with Speculation Risks in Virtual Currency Transactions" jointly issued by the central bank and ten other departments clearly defined "carrying out virtual currency-related business activities such as legal currency and virtual currency exchange business, exchange business between virtual currencies, buying and selling virtual currencies as a central counterparty, providing information intermediary and pricing services for virtual currency transactions, token issuance financing, and virtual currency derivatives transactions" as illegal financial activities.

However, if you already hold cryptocurrency, it is not necessarily illegal to go to Hong Kong to withdraw the currency or exchange it for legal tender.

For example, Xiao Sa said that if you ask a friend who is a Hong Kong resident to provide help, and at the same time ensure that the source of the funds is clear, small, incidental, and based on friendship between the two parties, it is not an illegal act. However, if Hong Kong residents use their identities to act as "currency dealers" to conduct transactions with mainland residents and implement regulatory arbitrage, they will violate the above notice and pose a criminal risk.

Asia Cryptocurrency Hub

It is worth mentioning that Zhongan Bank’s partner HashKey is also a local “incubated” virtual asset trader in Hong Kong. HashKey provides Zhongan Bank with custody transaction and clearing support for user assets.

Public information shows that HashKey Exchange is affiliated with HashKey Group and is Hong Kong’s first compliant cryptocurrency exchange for retail investors.

Xiao Feng, chairman of the group, is also known in the industry as the godfather of domestic "blockchain". He once worked at the Shenzhen Branch of the People's Bank of China and the Shenzhen Securities Management Office. After joining Wanxiang Holdings, a private enterprise, as vice chairman, the Wanxiang Blockchain Laboratory he is responsible for has invested in many well-known projects in the industry, such as Ethereum, ConsenSys, MakerDAO, etc. Southern Weekend reporters sent an interview invitation to Xiao Feng himself, but did not receive a response as of press time.

In a public speech in October 2024, Xiao Feng said that looking back on the development of blockchain in the past ten years, the industry is actually building a new crypto financial market (Crypto Financial Market). Compared with traditional financial markets such as banks, it is obvious that these are two sets of financial market systems. "But these two sets of financial market systems are gradually beginning to become interconnected."

An important driving force for this kind of interconnection comes from the regulatory level’s active embrace of new business formats.

In October 2022, the Hong Kong SAR government issued the "Policy Declaration on the Development of Virtual Assets in Hong Kong", which pointed out the direction for the development of Hong Kong's virtual asset industry. In June 2023, Hong Kong’s virtual asset service provider licensing system will take effect.

Currently, three exchanges in Hong Kong are licensed by the Securities and Futures Commission (SFC). They are OSL, HashKey and the Hong Kong Virtual Asset Exchange (HKVAX), which was only approved in October 2024. The Hong Kong Securities and Futures Commission has previously stated that it may issue more licenses to cryptocurrency exchanges and digital asset companies operating in Hong Kong before the end of 2024.

"Hong Kong is an international financial center and has an open and inclusive attitude towards innovators from around the world engaged in the virtual asset business." This is the first sentence on the first page of the above-mentioned declaration.

Chen Haolin, deputy director of the Treasury Bureau of the Hong Kong SAR Government, said that the Hong Kong government plans to conduct public consultations on the over-the-counter trading of virtual assets and the licensing system for custody service providers in 2025 to promote the sustainable development of different sectors of the virtual asset market.

Starting from July 2024, the Hong Kong Financial Supervisory Authority has passed the regulatory "sandbox" and launched a pilot program for the issuance of stable coins. So far, stablecoins issued by three institutions including JD Coin Chain Technology (Hong Kong) Co., Ltd. (affiliated to JD.com Group), Yuanbi Innovation Technology Co., Ltd., and Standard Chartered Bank (Hong Kong) Co., Ltd. have been included in the pilot.

"This sandbox can be understood as a 'positive list model.'" Zhang Feng, a technology evaluation expert at the Shanghai Blockchain Technology Association and a partner at Wanshang Tianqin Law Firm, explained to Southern Weekend reporters that the purpose is to allow financial institutions to test and collect data and user opinions in a risk-controllable and smaller-scale environment before launching new services and products, thereby speeding up the launch of relevant products and services and ensuring that services and products comply with regulatory requirements.

Zhang Feng has communicated with Hong Kong's financial regulatory agencies. He described Hong Kong's financial regulatory agencies as a group of industry managers at the forefront of the world. "Currently, Hong Kong has begun pilot projects or layouts in almost all financial fields involved, such as exchanges, stablecoins, asset management, funds, etc."

At the same time, the Hong Kong Securities and Futures Commission is also accelerating the license applications for 15 virtual asset trading platforms under review and is expected to issue licenses to several qualified operators within this year.

More than a month ago, the Hong Kong Exchange also launched the Hong Kong Exchange Virtual Asset Index Series to provide reliable benchmark prices for virtual assets, a rapidly emerging asset class, and support Hong Kong's development into Asia's leading digital asset center.

According to an investor survey conducted by the Hong Kong Investment Funds Association in July 2024, 75% of local respondents in Hong Kong are interested in investing in cryptocurrencies, of which 41% prefer to invest through spot/futures cryptocurrency exchange-traded funds (ETFs) listed in Hong Kong, while 39% choose products from locally licensed and regulated virtual asset trading platform operators.

High-roller gambling regulation shifts

Chen Zhifeng admitted to Southern Weekend reporters that an important reason for Hong Kong's rapid development in the field of virtual assets in the past two years is to seize the "empty window" in the United States. Chen Zhifeng serves as a senior executive at a global virtual currency trading platform.

In 2021, U.S. President Biden appointed Gary Gensler as the new chairman of the U.S. Securities and Exchange Commission (SEC). After taking office, he began to implement a radical reform initiative, focusing on combating violations in the cryptocurrency field.

Geisler sent Changpeng Zhao, the founder of Binance, the world's largest virtual currency trading platform, to prison, and also handled the largest financial fraud case in U.S. history – the case of Sam Bankman-Fried, the founder of the former cryptocurrency trading platform FTX.

Just as FTX collapsed and the cryptocurrency industry was deeply under the shadow of SEC regulation, in January 2024, the Hong Kong Financial Supervisory Authority released the "Conclusions of the Discussion Paper on Crypto-Assets and Stablecoins", clarifying the general regulatory plan for the future, deciding to give priority to the supervision of crypto-stable coins, and giving a detailed introduction to regulatory activities, target implementation time, licenses, regulatory principles, etc.

Hong Kong remains committed to its goal of becoming Asia’s cryptocurrency hub, a stance that has attracted some cryptocurrency companies.

"Gessler is notoriously unfriendly to the virtual currency industry. There are still some gray areas in this industry, and the scale has become so large that regulation cannot be ignored." Chen Zhifeng said.

According to statistics from a report released by consulting firm Henley & Partners, as of the first half of 2024, the number of global cryptocurrency users has reached 560 million, a year-on-year increase of 32%. The total market value of crypto assets exceeded US$2.3 trillion, a year-on-year increase of 89%. Cryptoassets are becoming increasingly important in the global wealth landscape.

In order to give the industry room to survive, industry companies such as Coinbase, Circle and a16z invested US$78 million in the lobbying platform Fairshake Pac in December 2023 to use it for "supporting cryptocurrency leadership" in the 2024 election. Trump eventually became a staunch supporter of this group.

On December 5, 2024, Trump nominated Paul Atkins to lead the U.S. Securities and Exchange Commission. Atkins, a former SEC commissioner, had a much more relaxed approach to financial markets than his predecessor.

After Trump announced his appointment, the price of Bitcoin surged to $103,853. This is the first time that the price of Bitcoin has exceeded the $100,000 mark, and investors are betting that the Trump administration's policies will shift towards promoting the growth of cryptocurrencies.

The inventor of Bitcoin, who goes by the pseudonym Satoshi Nakamoto, proposed the concept of Bitcoin in 2008 as a payment method that did not rely on the traditional financial system. As a result, many of Bitcoin's early fans were libertarians.

"It is indeed a bit ironic. Bitcoin, which originally wanted to subvert the traditional financial industry, now only wants to embrace regulation, and even proposed to make money by receiving government subsidies." Chen Zhifeng said.

As of December 16, 2024, the price of Bitcoin has increased by nearly 140% in 2024, and it mainly occurred in the past two months. Zhao Wei, a senior researcher at OKX Research Institute, analyzed to Southern Weekend reporters that Trump's election as President of the United States and his adoption of a cryptocurrency-friendly stance, as well as the nomination of a Bitcoin supporter as SEC Chairman, have injected more optimism into the market.

But there are also other objective reasons, such as the technical “halving” mechanism. At the end of April 2024, Bitcoin completed its fourth halving, and the mining reward dropped to 3.125 Bitcoins per block. Judging from historical experience, each halving will trigger a supply shock, and the ensuing "ripple effect" will cause the Bitcoin price to rise in the following months.

• (At the request of the interviewee, Chen Zhifeng is a pseudonym)

21st Century Economic Report

Hi everyone. I'm Stephanie LI.

Hello everyone, I am the host Li Yingliang.

Coming up on today's program.

Highlights

Here's what you need to know about China in the past 24 hours

China Economic News

China's inflation fell to its slowest pace in seven months, in October, due to a high comparison base and softer consumer demand, the National Bureau of Statistics said on Wednesday.

The country's consumer price index, a main gauge of inflation, rose by 2.1 percent year-on-year in October, a seven-month low, down from 2.8 percent in September, the NBS data showed.

Compared with a year ago, food prices increased 7 percent, down from 8.8 percent in September, as the comparison base rose, and vegetables, fruits and aquatic products came into the market in large numbers while consumer demand fell after the National Day holiday, the bureau said.

On a month-on-month basis, the CPI growth also slowed to 0.1 percent, compared with 0.3 percent in September.

The growth in core CPI, which excludes volatile food and energy prices and is deemed as a better gauge of the supply-demand relationship in the economy, came in at 0.6 percent year-on-year, the same as a month earlier.

Meanwhile, China's producer price index, which gauges factory-gate prices, declined by 1.3 percent from a year ago in October, following a 0.9 percent rise in September, marking the first negative PPI growth in almost two years, according to the NBS.

The bureau mainly attributed the fall in producer prices to last year's high comparison base, adding that the PPI rose by 0.2 percent on a monthly basis in October as demand increased in some industries, following a 0.1 percent decline in September.

Affected by factors such as the fall in consumer demand after the holidays and the higher comparison base for the same period last year, the year-on-year CPI growth in October fell. Also affected by the high comparison base in the same period last year, PPI fell year-on-year for the first time since January 2021.

The National Bureau of Statistics released the national CPI (Consumer Price Index) and PPI (Producer Price Index) data for October on November 9. CPI increased by 2.1% year-on-year and 0.1% month-on-month. PPI changed from a 0.9% increase in the previous month to a decrease of 1.3% year-on-year, and a month-on-month decrease from a 0.1% decrease in the previous month to an increase of 0.2%.

The CPI growth rate fell back in October, with food prices maintaining high growth driven by pig prices, while non-food prices remained low due to the weak service industry. Among them, food prices increased by 7.0%, a decrease of 1.8 percentage points from the previous month. Non-food prices increased by 1.1%, a decrease of 0.4 percentage points from the previous month, of which service prices increased by 0.4%, a decrease of 0.1 percentage points from the previous month.

Experts said that the core CPI, which excludes food and energy prices, has been sluggish and declining for a long time in the past. The core CPI continues to soften, indicating that effective social demand is still in the weak recovery stage, and effective demand is still weaker than the production side. The imbalance between supply and demand and internal and external risks may bring deflationary pressure.

In terms of PPI, demand in some industries increased in October, and the national PPI rose slightly month-on-month. However, affected by the high comparison base in the same period last year, the year-on-year increase turned to decrease. The month-on-month period ended with three consecutive months of negative growth and hit a half-year high. Among them, the price of means of production changed from an increase of 0.6% to a decrease of 2.5%; the price of means of living increased by 2.2%, an increase of 0.4 percentage points.

According to a research report, international oil prices and copper prices fell back in October, and coal prices also weakened after the peak season. Infrastructure and housing guarantee policies have driven ferrous metal prices to rebound. However, the shortage of coal and electricity in the same period of 2021 has brought a high base, dragging down the year-on-year increase in PPI.

Moving on to regional highlights

Regional observation

Next on industry and company news

Industry and company newsSwitching gears to financial news

financial market news

Wrapping up with a quick look at the stock market

stock market closing situation

Biz Word of the Day

Focus on financial vocabulary

China Consumer Price Index_China Industrial Producer Price Index_Real-time price of Binance Exchange official website

Executive Editor: Sonia YU

Editor: LI Yanxia

Host: Stephanie LI

Writer: Stephanie LI

Sound Editor: Stephanie LI

Graphic Designer: ZHENG Wenjing, LIAO Yuanni

Produced by 21st Century Business Herald Dept. of Overseas News.

Presented by SFC

Editorial Board Member: Yu Xiaona

OKEx Suspends Withdrawals, OKB Plummets! How Will The Download Of The Eureka Exchange APP Be Affected?

Black swan incidents in virtual currency exchanges always happen from time to time, and this time it is OKEx’s turn.

OKEx, one of the three major virtual currency trading platforms in China, suddenly issued an announcement today that it would suspend currency withdrawals and said that some of the people in charge of private keys were cooperating with the public security agency’s investigation.

According to a reporter from the Securities Times, Xu Mingxing, the actual controller of OKEx, has been taken away by the police, and OKEx may be suspected of cross-border money laundering, "because large cross-border transfers through virtual currency must be completed through Xu Mingxing's coordinated operation."

OKEx suspended withdrawals, OKB plummeted during the session

On October 16, OKEx officially announced that because some of the people in charge of OKEx’s private keys are cooperating with the public security agencies in the investigation today, they are currently out of contact and cannot complete the authorization. According to Article 8.1 "Service Changes and Interruptions" of the Terms of Service, OKEx may change the service content and/or interrupt, suspend or terminate the service at any time or without prior notice. In order to maximize the interests of customers and serve customers for the longest time, OKEx has decided to suspend user withdrawals starting from October 16, 2020 [11:00] (Hong Kong time).

OKEx suspended currency withdrawals_OKEx actual controller was taken away_European exchange APP download

Affected by this, some users began to directly liquidate OTC (over-the-counter), causing the OKB virtual currency to plummet by more than 16% during the session. As of press time, OKB was quoted at US$5.2, a decrease of 10.93%, with a total market value of US$1.45 billion.

OKEx actual controller was taken away_European exchange APP download_OKEx suspended currency withdrawals

The mainstream virtual currency Bitcoin also suffered a sharp short-term decline. Within a few minutes, it dropped $400 from its high point, plummeting 3%. Other mainstream virtual currencies also fell. Data shows that there are currently more than 270,000 BTC (Bitcoin) on OKEx. Based on the current price of Bitcoin at $11,307, the value exceeds $3.052 billion (equivalent to RMB 21.4 billion). Such a huge amount will cause huge fluctuations in the market whether it is liquidated, sold or withdrawn.

Data from Huishidi shows that the liquidation amount of Binmin in the last hour reached US$3.74 million (equivalent to RMB 25.03 million), and the liquidation amount in 24 hours reached US$161 million (equivalent to RMB 1.078 billion). Among them, the two largest liquidations in the last 24 hours came from the OKEx BTC perpetual contract.

OKEx suspended currency withdrawals_OKEx actual controller was taken away_European exchange APP download

OKEx was established in May 2017. It is a digital asset trading platform that mainly provides spot and derivatives trading services for Bitcoin, Ethereum and various innovative digital assets to global users. However, most users on the OKEx platform are domestic users, so the suspension of currency withdrawals caused an uproar in the domestic encryption industry.

Many domestic currency speculators regard exchange wallet accounts as regular "coin hoarding accounts" to facilitate trading operations. This announcement was sudden, and the digital currencies in the hands of many users may be directly "locked" in the exchange. Therefore, OKEx's suspension of currency withdrawals may have a direct impact on some currency speculators.

OKEx's own ecology also involves various fields such as public chains, wallets, and mining pools. OKEx, formerly known as OKCoin, a well-established exchange, is known as the "Whampoa Military Academy in the Currency Circle" and is one of the earliest exchanges involved in derivatives trading in China.

The actual accuser Xu Mingxing was taken away by the police, was it involved in money laundering?

OKex CEO responded to the previous announcement on the suspension of currency withdrawals on the official Weibo: Please rest assured that the company, business, and platform operations will not be affected. This is a personal issue of the private key manager. The currency withdrawals are temporarily suspended. We will announce the follow-up arrangements to you as soon as possible. Please refer to the announcement information.

From the response of OKEx CEO Jay Hao, we can see that the biggest possibility is the personal problem of the private key manager.

OKEx is not the first company to have problems with exchange private key management. The previous well-known one was the unexpected death of Canadian exchange QuadrigaCX founder Gerald Cotten. However, the exchange's main digital currencies were stored in cold wallets, and the private key of the cold wallet was only known to Gerald Cotten. As a result, approximately US$147 million worth of digital currencies could not be withdrawn.

According to Caixin.com, sources close to OKEx said that OKEx founder Xu Mingxing, who was officially mentioned in the announcement as “cooperating with the public security agency’s investigation,” had been taken away by the police at least a week ago. In this regard, OKEx public relations staff told the Securities Times reporter that they were not sure and everything would be subject to the announcement. However, Andy, a veteran in the currency circle, confirmed the above news to reporters. It was indeed Xu Mingxing who was taken away to cooperate with the investigation, which mainly involved the platform's involvement in cross-border money laundering. "If someone wants to conduct cross-border transactions of virtual currencies through OKEx, especially large funds, they must cooperate with Xu Mingxing."

It is reported that there are currently widespread rumors in the currency circle that OKEx is involved in cross-border money laundering. There are more than 800 accounts involved in this case, the amount is extremely large, and the nature is egregious. As one of the three giants of virtual currency trading platforms, OKEx’s sudden suspension of currency withdrawals really caught users in the currency circle by surprise.

Virtual currency trading becomes an illegal money laundering tool

Due to the non-face-to-face and anonymity of transactions, the wide scope of application, the diversity of capital injection methods, the possibility of obtaining cash, the segmentation of services, the speed and irrevocability of transactions, virtual currency is very difficult to identify the use of virtual currency for money laundering, and the transaction model is complex, it can easily become a tool for money laundering.

In the entire virtual currency money laundering, there are many specialized money launderers who take over the business and use their fund pools, multiple transfers, etc. to help the payers and payees "wash" the information addresses, making it impossible to trace.

Under the new regulatory situation, the central bank's anti-money laundering and other work has been continuously intensified and upgraded. For the first time, the central bank has clearly included third-party payment institutions in its key scope and promoted them to actively fulfill their anti-money laundering obligations. In January this year, the central bank issued a relevant notice. Starting from March 1, the People's Bank of China and its branches will launch on-site anti-money laundering inspections of non-bank payment institutions. The inspected non-bank payment institutions should provide relevant data in accordance with interface specifications.

In March this year, the central bank’s official Weibo released the eighth article in the 315 Financial Consumer Rights Protection Series, reminding financial consumers not to be deceived by virtual currency trading platforms and to be wary of falling into virtual currency traps.

The article points out several "routines" that currently exist in virtual currency exchanges: serious washouts; malicious downtime, forcing leveraged trading to liquidate; money laundering fraud, and reminds investors to avoid falling into the virtual currency trap.

An Introduction To Binance’s Blocking Of U.S. Users And Cooperation With Law Enforcement Agencies

Technical Compliance and Blocking to US Users

Changpeng Zhao said that Binance.com has developed first-class technology to ensure compliance. Binance was the first global (non-US) exchange to implement a mandatory KYC (Know Your Consumer, Know Your Customer) program and still has one of the highest standards in KYC and AML (Anti-Money Laundering). “We block U.S. users by nationality (KYC), IP (including commonly used VPN endpoints outside the U.S.), mobile carriers, device fingerprints, bank deposits and withdrawals, blockchain deposits and withdrawals, credit card issuing bank identification numbers (bin numbers), and more. We know of no other company using a system that is more comprehensive and effective than Binance.”

Cooperation and transparency with law enforcement

Changpeng Zhao said that Binance is committed to maintaining transparency and cooperation with regulatory agencies and law enforcement agencies (LEs) in the United States and around the world. Binance currently has a compliance team of more than 750 people, many of whom have previous backgrounds in law enforcement and regulatory agencies. "To date, we have processed more than 55,000 LE requests and assisted U.S. LEs in freezing/seizuring over $125 million in funds in 2022 and $160 million in funds so far in 2023. We intend to continue to respect and cooperate with regulators in the United States and around the world."

In terms of registration permissions and licenses, Changpeng Zhao believes that “Binance.com has the largest number of registration permissions/licenses in the world (currently 16, and the number will increase), and is well received by our user community.”

Transaction status

Changpeng Zhao stated that Binance will not engage in profitable trading or "manipulate" the market under any circumstances. Binance conducts “trades” in a variety of situations. “Our revenue is in crypto. We do need to convert them from time to time into fiat or other cryptocurrencies to pay fees. We have affiliates that provide liquidity for less liquid pairs. These affiliates are specially monitored and are not allowed to make huge profits.”

Changpeng Zhao mentioned, “Personally, I have two accounts with Binance: one for the Binance Card and one for my crypto assets. I eat our own dog food (using my own company’s services) and store my cryptocurrencies on Binance.com. I also need to convert cryptocurrencies from time to time to pay for my personal expenses or credit cards.”

He said that Binance has a 90-day no-trading rule for employees, which means that Bitcoin cannot be sold within 90 days of the last purchase, and vice versa. This is to prevent any employee from actively trading. Binance also banned employees from futures trading. Additionally, Binance has strict policies regarding any employees who have access to private information, and they are not allowed to buy or sell these cryptocurrencies. "I strictly abide by these policies myself. I have never participated in the functions of Binance Launchpad (blockchain asset issuance platform), Earn (one-stop trading platform), Margin (margin trading) or Futures (futures)."

Binance and founder Changpeng Zhao were sued by the CFTC

At 11:24 local time on March 27, the U.S. Commodity Futures Trading Commission (CFTC) announced on its official website that it had filed a civil enforcement action with the U.S. District Court for the Northern District of Illinois, accusing Changpeng Zhao and three entities operating the Binance platform of repeatedly violating the Commodity Exchange Act (CEA) and CFTC regulations to circumvent compliance controls. The CFTC also charged Binance’s former Chief Compliance Officer (CCO) Samuel Lim with aiding and abetting Binance’s violations.

The CFTC stated that in its ongoing litigation against Binance and Changpeng Zhao, the agency is seeking to recover proceeds, civil penalties, the issuance of a permanent injunction to cease trading and registration, and a permanent injunction for further violations of CEA and CFTC regulations.

After multiple foreign media reported that Changpeng Zhao and Binance were accused by the CFTC, Bitcoin once fell below $26,700. According to CoinMarketCap data, as of press time, Bitcoin has rebounded slightly to around $27,000, but it has still fallen 3.37% in the past 24 hours.

Real-time Binance Coin Market_Binance Technical Compliance_Binance’s Blocking Measures for US Users

Image from CoinMarketCap

Virtual Currency Collective Flash Crash, Bitcoin Plummeted, 417,000 People Liquidated Their Positions, And Binance Coin Plummeted

Always witnessing history.

On Friday night, the collective "avalanche" of Chinese concept stocks shocked global investors. However, at noon on Saturday, virtual currencies also began a collective "flash crash". Bitcoin plummeted by $10,000 in the afternoon, and the 24-hour drop once exceeded 20%.

The latest data shows that in the past 24 hours, a total of 417,000 people liquidated their positions, and the liquidation amount of digital currency contracts across the entire network reached US$2.584 billion (approximately RMB 16.4 billion). Among them, the liquidation amount of Bitcoin alone exceeded US$1 billion within 24 hours.

According to the latest data from the CoinMarketCap website, as of 9 pm on Saturday, the total market value of global digital currencies was US$2.2 trillion, a decrease of 16.74% from the previous day, and the evaporated market value exceeded US$440 billion (approximately RMB 2,805.3 billion).

According to rough calculations based on public data, with the collapse of Binance Coin, Changpeng Zhao, who is regarded by Forbes as the richest man in China, may lose more than 10 billion yuan in one day.

Virtual currency collective “flash crash”, 417,000 people liquidated their positions

We have just witnessed the collective plunge of Chinese concept stocks. At noon on Saturday, virtual currencies also experienced a "flash crash".

Performance of well-known Chinese concept stocks as of Friday’s close

Market data shows that at noon on December 4, Bitcoin quotations fell below $42,000 for a short time, a 24-hour drop of more than 20%. Ethereum fell below $3,500, losing more than 21% in 24 hours.

Virtual currency flash crash_Real-time Binance Coin Market_Bitcoin 24-hour drop

As of around 7:40 pm on December 4, Bitcoin was quoted at about US$46,500 per coin, down more than 18% in 24 hours; Ethereum was quoted at about US$3,850 per coin, down by about 16% in 24 hours. In addition, EOS currency fell by more than 28%, Ada coin fell by more than 22%, Monero fell by more than 20%, Dogecoin fell by more than 22%, and Binance Coin (BNB) fell by nearly 13%.

Bitcoin 24-hour drop_Real-time Binance Coin Market_Virtual currency flash crash

Bitcoin 24-hour drop_Real-time Binance Coin Market_Virtual currency flash crash

Previously, the price of Bitcoin hit a record high in November this year, breaking through to $69,000, and the overall market value of cryptocurrency climbed to nearly $3 trillion. However, after the failure to hit the $70,000 mark, the price trend of Bitcoin was obviously weak. The highest price of Bitcoin hit $59,000 on December 1 and has been falling since then.

The latest data shows that as of 8 p.m. on December 4, a total of 417,000 people have liquidated their positions in the past 24 hours, and the liquidation amount of digital currency contracts across the entire network has reached US$2.584 billion. Among them, the liquidation amount of Bitcoin alone exceeded US$1 billion within 24 hours.

Real-time Binance Coin Market_Virtual currency flash crash_Bitcoin 24-hour drop

What is the reason for the collective “annihilation” of virtual currencies? There are different opinions on this on the Internet.

Some analysts said that behind the collapse of virtual currencies may be the resonance of multiple factors: including expectations of interest rate hikes (surge in short-term interest rates), pessimistic expectations of stagflation, expectations of Taper acceleration, etc. In addition, risk factors include the continued spread of new variants of the Omicron strain of the new coronavirus mutated virus. “In short, risk assets are currently undergoing a sharp correction, and the correlation between crypto assets and mainstream risk assets is also increasing.”

On December 3, local time, Maria Van Kerkhove, technical director of the World Health Organization's health emergency project, said in Geneva that from what she learned, the Omicron strain of the new coronavirus mutant virus has appeared in at least 38 countries and regions around the world, and relevant cases have been reported in six regions under the jurisdiction of the WHO. The WHO recently pointed out that the risk of the Omicron virus causing a surge in infection cases globally is "very high" and may bring "serious consequences" to some regions.

"The richest man in China" Zhao Changpeng's net worth may shrink by more than 10 billion in one day

Recently, there has been a lot of big news in the currency circle. Changpeng Zhao, the founder of the cryptocurrency platform Binance, surpassed Zhong Suisui, the chairman of Nongfu Spring, and became the new richest man in China. The news is also on the circle of friends.

According to Caijing, Binance was founded only four years ago and has become the world's largest cryptocurrency exchange, with 3,000 employees worldwide and a daily trading volume of US$76 billion, which is more than its four largest competitors combined. According to insiders, based on the current transaction scale, Binance’s valuation will reach US$300 billion (approximately RMB 1,912.7 billion).

It is reported that Changpeng Zhao controls a majority of Binance’s shares. According to Forbes, founder Changpeng Zhao owns 30% of Binance shares. Based on this calculation, Zhao Changpeng's net worth has now reached 90 billion US dollars (equivalent to 573.3 billion yuan). This net worth means that Zhao Changpeng has become the richest man in China and ranks among the top ten richest people in the world.

Virtual currency flash crash_Bitcoin 24-hour drop_Real-time Binance Coin Market

However, on November 30, Changpeng Zhao posted information on social media saying that if he sold 0.01% of the company's equity for 1 US dollar, would the company be worth 10,000 US dollars? If a total amount of 1 trillion currency was issued and a token was sold for 1 US dollar, would he have a currency worth 1 trillion US dollars. And in the subsequent comment, valuation without liquidity means nothing. Suspected to be in response to a hot search about the new richest Chinese man with a net worth of US$90 billion.

As of 8 p.m. on December 4, Binance Coin (BNB) fell nearly 13%, with the latest total market value approximately US$90.776 billion, a decrease of more than US$13.5 billion compared to the previous day's total market value.

Changpeng Zhao has said that in terms of investment, he owns some Bitcoin, but the majority of his assets are Binance Coin. However, Changpeng Zhao did not disclose the number of Binance Coins he holds. However, according to previous public information, the Binance team holds about 40% of Binance coins, and Forbes data shows that Changpeng Zhao owns 30% of Binance shares. Based on this rough calculation, Zhao Changpeng's net worth shrank by about 10.3 billion yuan (about 1.62 billion U.S. dollars) in one day.

According to past reports, Changpeng Zhao is a Canadian-Chinese who has a high influence in the field of cryptocurrency and is known as "CZ". He was born in 1977 and lived in Jiangsu as a child. Later, he moved to Vancouver, Canada with his family, and currently lives in Singapore temporarily.

In 2005, Zhao Changpeng successively founded Fuxin Information, Bijie Technology and other companies in Shanghai, making his first pot of gold. He entered the Bitcoin field in 2013, and founded Binance with his team in 2017, issuing the digital currency "Binance Coin" (BNB). Half a year later, Binance reached 6 million users, becoming the world's largest cryptocurrency exchange and maintaining its leading position in the industry to this day. Changpeng Zhao said that he hopes that Binance will grow at a more moderate rate. "We hope that other exchanges can grow a little stronger so that they can share user pressure with us."

According to data from the Coinglass website, in terms of Bitcoin holdings, as of 9 pm on the 4th, the Bitcoin contract holdings of the blockchain trading platform Binance accounted for 22.18%, ranking first among all platforms.

Bitcoin 24-hour drop_Real-time Binance Coin Market_Virtual currency flash crash

However, globally, cryptocurrency exchanges lack regulation and fall into a gray area in many countries. So far, Binance has received warnings from financial regulatory agencies in the United Kingdom, Germany, Japan, Malaysia, South Africa, Singapore and other countries, and has successively announced the withdrawal of users from the United States, China, and Singapore.

SEC Chairman: Concerned about ETFs that directly hold Bitcoin

According to the latest news from Bloomberg on December 4, U.S. Securities and Exchange Commission (SEC) Chairman Gary Gensler expressed concerns about ETFs that directly hold Bitcoin. In response to a question from Pat Toomey, the top Republican on the Senate Banking Committee, Gensler reiterated his concerns about Bitcoin’s lack of regulation and the potential for fraud and manipulation.

On October 15, the first Bitcoin futures ETF in the United States was approved. The U.S. Securities and Exchange Commission approved the listing of the Bitcoin futures ETF applied by ETF giant ProShares under the code BITO. According to Bloomberg statistics, on the first day of listing, BITO changed hands more than 24 million units, and the total trading volume on the first day was close to 1 billion US dollars, second only to BlackRock's carbon neutral ETF, becoming the ETF with the second highest first-day trading volume in history.

Also in October this year, the second Bitcoin futures ETF, the Valkyrie Bitcoin Strategy ETF, was also traded on Nasdaq under the trading code BTF. In mid-November this year, the third VanEck Bitcoin Strategy ETF (XBTF) was also listed for trading.

However, compared with the successive approvals for listing of Bitcoin futures ETFs, the United States is still very cautious about Bitcoin spot ETFs. In November this year, the U.S. Securities and Exchange Commission rejected VanEck’s application for a Bitcoin spot ETF.

Gensler said that while he is comfortable with futures-based ETFs because Bitcoin futures trade on highly regulated exchanges, the same cannot be said for Bitcoin spot.

China strengthens virtual currency regulation

It is worth noting that recently, the cryptocurrency trading platform Huobi began to issue internal messages to remind users in mainland China to clear their account assets, and made it clear that the currency deposit function for users in mainland China will be closed on December 14. On December 15th, the currency trading function for mainland Chinese users will be banned, and on December 31st, OTC transactions will be removed.

Bitcoin's 24-hour decline_Virtual currency flash crash_Real-time Binance Coin Market

Since 2021, the People's Bank of China has interviewed some banks and payment institutions on the issue of speculation in virtual currency transactions, requiring banks and payment institutions to strictly implement regulatory provisions such as the "Notice on Preventing Bitcoin Risks" and "Announcement on Preventing Token Issuance Financing Risks", effectively perform customer identification obligations, and must not provide account opening, registration, trading, clearing, settlement and other products or services for related activities.

On September 24, ten departments including the People's Bank of China jointly issued the "Notice on Further Preventing and Dealing with Speculation Risks in Virtual Currency Transactions" (hereinafter referred to as the "Notice"). The "Notice" clarified that virtual currency-related business activities are illegal financial activities, and the provision of services by overseas virtual currency exchanges to residents in my country through the Internet is also illegal financial activities. On the same day, 11 departments including the National Development and Reform Commission jointly issued the "Notice on Regulating Virtual Currency "Mining" Activities" to comprehensively rectify the "coin speculation" pattern across the entire chain.

Guosheng Securities analysis believes that with the promulgation of the “924” document, China’s crypto asset supervision has entered a new era. This policy is the most stringent policy in the history of China's crypto-asset supervision after the People's Bank of China, the Cyberspace Administration of China and seven other departments issued the "Announcement on Preventing Financing Risks of Token Issuance" on September 4, 2017 (known as the "September Fourth").

Guosheng Securities believes that the "924" has the following characteristics compared to the "94": 1) The regulatory situation is more severe; 2) There are more regulatory authorities, including the Supreme People's Court, the Supreme People's Procuratorate, the Ministry of Public Security, and the State Administration of Foreign Exchange, and the characterization is more stringent; 3) There are more regulatory reasons involved; 4) There are more regulatory measures; 5) More business types are involved; 6) More business behaviors are involved.

Munger: China did the right thing by banning cryptocurrencies

According to the Australian Financial Review, "Stock God" Buffett's old partner, 97-year-old Charlie Munger, said at an investment conference in Sydney on December 2: "I think the Chinese made the right decision, which is to ban them (cryptocurrencies), and my country made the wrong decision."

Munger praised China for not letting the cryptocurrency investment craze go too far and "they acted in a more mature way." He also said that he would never buy cryptocurrencies and wished cryptocurrencies had never been invented. He also said that the current global stock market environment is even "crazier" than the Internet bubble in the late 1990s.

"I can't stand to be part of this crazy boom, one way or another. It seems to be working fine and everyone wants to get in, and I have a different attitude." Munger added, "I want to make money by selling people things that are good for them, not selling them things that are bad. Trust me, people who create cryptocurrencies are not thinking about their customers, they are only thinking about themselves. I personally can't stand to be part of these crazy booms, in any form."

Sign In

Forgot Password

Sign Up