Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Harami Patterns (Primary)
- (BullishHarami()) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Momentum - Market: 1 (Supporting Entry)
- (increasing(sector($curexchange, mom(close, 13))) and sector($curexchange, mom(close, 13)) < sector($curexchange, mov(mom(close, 13), 9, exponential))) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000)
- -------
- // R-Squared 1.0 (Primary)
- ($daysheld > 3 or
- $entryprice < close) or
- // Bearish Harami Exit (Supporting Exit)
- (BearishHarami())
Advertisement
Add Comment
Please, Sign In to add comment