import seaborn as sns
import matplotlib.pyplot as plt
import numpy as np
currency_data = [np.random.normal(loc=1.2, scale=0.1, size=1000),
np.random.normal(loc=1.3, scale=0.15, size=1000),
np.random.normal(loc=1.1, scale=0.05, size=1000),
np.random.normal(loc=1.4, scale=0.2, size=1000),
np.random.normal(loc=1.0, scale=0.1, size=1000)]
currencies = ['Currency A', 'Currency B', 'Currency C', 'Currency D', 'Currency E']
plt.figure(figsize=(10, 6))
for i, currency in enumerate(currencies):
sns.kdeplot(currency_data[i], label=currency)
plt.xlabel('Price')
plt.ylabel('Density')
plt.legend()
plt.show()