AuthentiScan/Ignite
0
1---2title: Ignite3emoji: ๐ฅ4colorFrom: yellow5colorTo: red6sdk: streamlit7sdk_version: 1.59.18app_file: app.py9pinned: false10---11 12# ๐ฅ IGNITE โ Candlestick Signal PoC13 14A Streamlit Proof of Concept that analyzes the body, wicks, and volume of15recent candlesticks (via `yfinance`) to produce a simple directional lean:16**UP**, **DOWN**, or **HOLD**.17 18## How it works19 20- Fetches recent OHLCV data for a selected ticker/interval using `yfinance`.21- Computes the body size, upper wick, and lower wick of the most recently22 completed candle as a percentage of its total range.23- Compares the candle's volume against a rolling average of prior candles.24- Applies a small heuristic ruleset (e.g. a red candle with a long lower25 wick and fading volume flags a potential bullish reversal) and displays26 the reasoning behind each call.27- Renders an interactive Plotly candlestick chart highlighting the28 analyzed candle.29 30## Run locally31 32```bash33pip install -r requirements.txt34streamlit run app.py35```36 37## โ ๏ธ Disclaimer38 39This is a rule-based heuristic demo for educational purposes only. It is40**not financial advice** and should not be used as the sole basis for real41trading decisions.