AnthonyAlexander

MA #12 ACAA

Jan 16th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. // Moving Average Crossover: 2 (Primary)
  2. (crossbelow(mov(close, 7, simple), mov(close, 40, simple))) and
  3.  
  4. // Minimum Price Requirement (Supporting Entry)
  5. (close > 1) and
  6.  
  7. // Minimum Liquidity Requirement (Supporting Entry)
  8. (mov(volume, 20, simple) * close >= 200000) and
  9.  
  10. // Moving Average Crossover - Sector: 2 (Supporting Entry)
  11. (sector("MA", mov(close, 2, simple)) < sector("MA", mov(close, 35, simple)))
  12.  
  13. --------
  14.  
  15.  
  16. // tema cross 3 (Primary)
  17. (stopup(0.01, Unleveraged) or
  18. $daysheld > 3) or
  19.  
  20. // Bearish Harami Exit (Supporting Exit)
  21. (BearishHarami())
Advertisement
Add Comment
Please, Sign In to add comment