AnthonyAlexander

MA #11 BAAA

Jan 16th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. // Harami Patterns (Primary)
  2. (BullishHarami()) and
  3.  
  4. // Minimum Price Requirement (Supporting Entry)
  5. (close > 1) and
  6.  
  7. // Momentum - Market: 1 (Supporting Entry)
  8. (increasing(sector($curexchange, mom(close, 13))) and sector($curexchange, mom(close, 13)) < sector($curexchange, mov(mom(close, 13), 9, exponential))) and
  9.  
  10. // Minimum Liquidity Requirement (Supporting Entry)
  11. (mov(volume, 20, simple) * close >= 200000)
  12.  
  13.  
  14. -------
  15.  
  16.  
  17. // R-Squared 1.0 (Primary)
  18. ($daysheld > 3 or
  19. $entryprice < close) or
  20.  
  21. // Bearish Harami Exit (Supporting Exit)
  22. (BearishHarami())
Advertisement
Add Comment
Please, Sign In to add comment