Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Moving Average Crossover: 2 (Primary)
- (crossbelow(mov(close, 7, simple), mov(close, 40, simple))) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000) and
- // Moving Average Crossover - Sector: 2 (Supporting Entry)
- (sector("MA", mov(close, 2, simple)) < sector("MA", mov(close, 35, simple)))
- --------
- // tema cross 3 (Primary)
- (stopup(0.01, Unleveraged) or
- $daysheld > 3) or
- // Bearish Harami Exit (Supporting Exit)
- (BearishHarami())
Advertisement
Add Comment
Please, Sign In to add comment