Trade Like a Pro with Keltner Channels & Python



AI Summary

Video Summary: Python & Keltner Channel Trading Strategy

  • Introduction
    • Video covers using Python to implement the Keltner Channel trading strategy.
    • Demonstrates buying and selling an asset using this strategy.
    • Recommends using cab.research.com for easy Python programming start.
    • Viewers are instructed to create a new notebook on the website.
  • Setting Up the Environment
    • Import necessary libraries: pandas, matplotlib, numpy.
    • Encourages viewers to subscribe, like, and hit the notification bell.
    • Code and datasets available on Patreon (patreon.com/computerscience).
    • Disclaimer: Content is educational, not professional investment advice.
  • Explaining the Strategy
    • Keltner Channel is a volatility-based indicator with three bands.
    • Buy signal: price breaks above the upper band.
    • Sell signal: price breaks below the lower band.
    • Middle band used as the exit point for the trade.
  • Coding the Strategy
    • Define a function to calculate Keltner Channels with parameters for data, window period, and ATR multiplier.
    • Calculate typical price, exponential moving average (EMA), and average true range (ATR).
    • Create upper and lower bands using EMA and ATR.
    • Define a function to plot Keltner Channels and buy/sell signals.
    • Implement logic for buy/sell signals based on crossing the upper/lower bands.
    • Format the plot with titles, labels, and shaded areas between bands.
  • Testing the Strategy
    • Read in stock data from a CSV file.
    • Apply the Keltner Channel function to the data.
    • Plot the data with the Keltner Channels and buy/sell signals.
    • Test the strategy with different datasets (Apple and Bitcoin over five years).
    • Adjust buy/sell signal restraints to refine the strategy.
    • Acknowledge the strategy is not perfect and advise viewers to research before investing.
  • Conclusion
    • Thanks viewers and Patreon supporters.
    • Reminds to check the description for links to Patreon for code and datasets.
    • Signs off with an invitation to watch the next video.