10 lines
325 B
Python
10 lines
325 B
Python
|
|
"""
|
||
|
|
Orderflow Trading Alert System
|
||
|
|
Based on Fabio's orderflow methodology:
|
||
|
|
- Profile Framing (daily bias via volume profile)
|
||
|
|
- Orderflow Execution (absorption, initiative, sweep, exhaustion, divergence)
|
||
|
|
- State Machine: Qualified Level → Absorption → Initiative Confirmation → Momentum Trail
|
||
|
|
"""
|
||
|
|
|
||
|
|
__version__ = "0.1.0"
|