You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
565 B
20 lines
565 B
#!/usr/bin/python3 |
|
# Visualization for HODLbag NFT price curve |
|
import numpy as np |
|
import matplotlib.pyplot as plt |
|
|
|
x= np.arange(start=1, stop=101, step=1) # Piece of bags |
|
|
|
y_array = [] |
|
price = 20 # Deploy time $20 |
|
for step in range(100): |
|
price = price * 1.03 # 5% increase |
|
y_array.append(price) |
|
|
|
y = np.array(y_array) |
|
|
|
plt.title("Visualization of HODLbag NFT price increase") |
|
plt.xlabel("Number of NTFs sold") |
|
plt.ylabel("Price increase of the NFTs") |
|
plt.plot(x,y, color = 'blue', marker = "*") |
|
plt.show()
|
|
|