python
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
# Define the moving averages parameters
short_ma_period = 10 # Shorter moving average period
long_ma_period = 30 # Longer moving average period
# Generate random price data (replace with your own data)
price_data = np.random.randint(low=90, high=110, size=100)
# Create a DataFrame...