import matplotlib.pyplot as plt
# Data from the chart and analysis
prices = # Recent low, mid-point, current price
dates = # Approximate times
ma5 = * 3 # 5-day Moving Average (simplified as constant for demo)
ma10 = * 3 # 10-day Moving Average (simplified as constant for demo)
# Plotting
plt.figure(figsize=(10, 6))
plt.plot(dates, prices, label='TAP Price', marker='o', color='green')
plt.plot(dates, ma5, label='5-day MA', linestyle='--', color='blue')
plt.plot(dates, ma10, label='10-day MA', linestyle='--', color='orange')
plt.axhline(y=0.026554, color='red', linestyle=':', label='Support')
plt.axhline(y=0.033000, color='red', linestyle=':', label='Resistance')
plt.title('TAP Price Movement (July 06, 2025)')
plt.xlabel('Time')
plt.ylabel('Price ($)')
plt.legend()
plt.grid(True)
plt.show()