BTC CALL
import matplotlib.pyplot as plt
# Figure setup
plt.figure(figsize=(9,7))
plt.title("đ BTC/USDT Trading Setup (3M) đ", fontsize=16, fontweight="bold")
# Zones and levels
plt.axhspan(110000, 113000, color="#4CAF50", alpha=0.4, label="Entry Zone (110K–113K)")
plt.axhspan(93500, 95000, color="#8BC34A", alpha=0.3, label="Strong Buy Zone (93.5K–95K)")
# Current Price
plt.axhline(y=112689, color="red", linestyle="--", linewidth=2)
plt.text(0.02, 112689+500, "đ Current Price: 112,689", color="red", fontsize=11, fontweight="bold")
# Take Profits
tp_levels = [119500, 131200, 165000]
tp_labels = ["đ¯ TP1: 119.5K", "đ¯ TP2: 131.2K", "đ¯ TP3: 165K"]
for tp, label in zip(tp_levels, tp_labels):
plt.axhline(y=tp, color="blue", linestyle="-.", linewidth=2)
plt.text(0.02, tp+500, label, color="blue", fontsize=11, fontweight="bold")
# Stop Loss
sl = 92000
plt.axhline(y=sl, color="black", linestyle=":", linewidth=2)
plt.text(0.02, sl+500, "⛔ Stop Loss: 92K", color="black", fontsize=11, fontweight="bold")
# Design tweaks
plt.ylabel("Price (USDT)", fontsize=12, fontweight="bold")
plt.xlabel("Time (Not to Scale)", fontsize=12, fontweight="bold")
plt.grid(True, linestyle="--", alpha=0.5)
plt.ylim(90000, 170000)
Comments
Post a Comment