Search
Products
Community
Markets
News
Brokers
More
EN
Get started
VIET NAM DAIRY PRODUCTS JOINT STOCK COMPANY
Long
Jul 2, 2023
Loc
1
Grab this chart
Grab this chart
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['bb_high'], df['bb_mid'], df['bb_low'] = vol.bollinger_hband(df['Close']), vol.bollinger_mavg(df['Close']), vol.bollinger_lband(df['Close'])
# Filter stock price movements that are above the upper Bollinger Band
df['above_bb_high'] = df['Close'] > df['bb_high']
# Filter stock price movements that are below the lower Bollinger Band
df['below_bb_low'] = df['Close'] < df['bb_low']
# Print the filtered stock price movements
print(df[df['above_bb_high'] | df['below_bb_low']])
nghiaquan68a8df94c24adf4f9d
Follow
Beyond Technical Analysis
nghiaquan68a8df94c24adf4f9d
Follow
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the
Terms of Use
.