Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Stochastics %D Divergence: 1 (Primary)
- (diverge(stochd(5, 2, 7, simple), mov(close, 3, simple), 2, 17) = 1) and
- // Minimum Price Requirement (Supporting Entry)
- (close > 1) and
- // Minimum Liquidity Requirement (Supporting Entry)
- (mov(volume, 20, simple) * close >= 200000) and
- // TRIX - Market: 2 (Supporting Entry)
- (sector($curexchange, trix(close, 7)) < sector($curexchange, mov(trix(close, 7), 45, simple)))
- ----------
- // macd 10 24 8 v2 (Primary)
- (// bband momentum 1.0 (Primary)
- ($daysheld <= 3
- ) and
- // Long Stop Gain / Short Stop Loss (Supporting Exit)
- (close > $entryprice)) or
- // Long Stop Gain / Short Stop Loss (Supporting Exit)
- (stopup(30))
Advertisement
Add Comment
Please, Sign In to add comment