HOSE:VNM   VIET NAM DAIRY PRODUCTS JOINT STOCK COMPANY
import pandas as pd
import ta.volatility as vol

# Load stock price data into a pandas DataFrame
df = pd.read_csv('stock_prices.csv')

# Calculate Bollinger Bands
df, df, df = vol.bollinger_hband(df), vol.bollinger_mavg(df), vol.bollinger_lband(df)

# Filter stock price movements that are above the upper Bollinger Band
df = df > df

# Filter stock price movements that are below the lower Bollinger Band
df = df < df

# Print the filtered stock price movements
print(df[df | df])
免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。