Metadata-Version: 2.1
Name: trendalert
Version: 0.0.5
Summary: Stock or Futures donchian breakout screener
Home-page: https://github.com/jonleonATX/donchian_trend_alert
Author: Jonathan Leon
Author-email: jonleonaustin@gmail.com
License: UNKNOWN
Description: This module is not intended as advice to trade, it is for use in your trading analyses and algorithms. Use at your own risk.
        
        This screener uses Donchian Channels, Average True Range, and other inputs to determine if a stock, future or other financial instrument with timeseries (OHLC) may breakout out of its defined channel.
        
        Required data:
        
        -Pandas dataframe containing index as datetime and columns (High, Low, Open, Close) as float
        -Define the number of breakout periods (default: 55 periods)
        -Average True Range (ATR) window (default: 14 periods)
        -ATR multiple (default: 1.5)- sensitivy used to determine a level at which the alert will provide a positive signal
        
        The response returned is a tuple of the signal and a plotly chart: (signal, chart) create_chart=False is default. The signal is one of three options: 1, -1, 0
        
        1 - Possbile breakout to go long
        -1 - Possible breakuot to go short
        0 - Too far from either price channel
        
        Dependencies:
        
        -pandas
        -ta
        -plotly
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
