비트코인 세력 수익 구조 시각화 (가격 단계 + 이중 수익 구조)

import matplotlib.pyplot as plt import numpy as np

시간 축 (단순 월 단위)

time = np.linspace(0, 36, 36)  # 3년 (2022~2025)

가격 흐름 (단순 곡선 모형)

price = 15000 + 111000 * (1 - np.exp(-time/10)) - 10000 * np.exp((time-28)/3)

세력 수익 구조 (단순 모형)

spot_profit = np.clip((price - 20000) * 0.05, 0, None) deriv_profit = np.clip((np.max(price) - price) * 0.03, 0, None) total_profit = spot_profit + deriv_profit

fig, axes = plt.subplots(2, 1, figsize=(12, 8), sharex=True)

--- [1] 가격 사이클 단계별 도식 ---

axes[0].plot(time, price, color='gold', linewidth=3, label='BTC Price (USD)') axes[0].set_title('비트코인 사이클과 세력의 3단계 행동', fontsize=13) axes[0].set_ylabel('BTC 가격($)') axes[0].grid(True, alpha=0.3)

단계 표시

axes[0].axvspan(0, 10, color='green', alpha=0.1, label='① 매집 (15K120K)') axes[0].axvspan(27, 36, color='red', alpha=0.1, label='③ 청산·숏 전환 (100

- dc official App