//! Five-bar candlestick patterns
//!
//! This module contains pattern implementations that require five consecutive bars
//! for pattern recognition (e.g., Five White Soldiers, complex reversal patterns, etc.).
//!
//! Each pattern module should use the `#[pattern_template]` attribute macro
//! to automatically register with the global pattern registry.
pub const BAR_COUNT: usize = 5;
pub const PREV_BAR: usize = 0;
pub const FIRST_BAR: usize = 1;
pub const SECOND_BAR: usize = 2;
pub const THIRD_BAR: usize = 3;
pub const FOURTH_BAR: usize = 4;
pub const FIFTH_BAR: usize = 5;