Advertisement
Guest User

p

a guest
Sep 21st, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1.  
  2. bear_abcd = isABCD(-1) and not isABCD(-1)[1]
  3. bear_bat = isBat(-1) and not isBat(-1)[1]
  4. bear_altbat = isAltBat(-1) and not isAltBat(-1)[1]
  5. bear_butterfly = isButterfly(-1) and not isButterfly(-1)[1]
  6. bear_gartley = isGartley(-1) and not isGartley(-1)[1]
  7. bear_crab = isCrab(-1) and not isCrab(-1)[1]
  8. bear_shark = isShark(-1) and not isShark(-1)[1]
  9. bear_5o = is5o(-1) and not is5o(-1)[1]
  10. bear_wolf = isWolf(-1) and not isWolf(-1)[1]
  11. bear_hns = isHnS(-1) and not isHnS(-1)[1]
  12. bear_contria = isConTria(-1) and not isConTria(-1)[1]
  13. bear_exptria = isExpTria(-1) and not isExpTria(-1)[1]
  14.  
  15. bull_abcd = isABCD(1) and not isABCD(1)[1]
  16. bull_bat = isBat(1) and not isBat(1)[1]
  17. bull_altbat = isAltBat(1) and not isAltBat(1)[1]
  18. bull_butterfly = isButterfly(1) and not isButterfly(1)[1]
  19. bull_gartley = isGartley(1) and not isGartley(1)[1]
  20. bull_crab = isCrab(1) and not isCrab(1)[1]
  21. bull_shark = isShark(1) and not isShark(1)[1]
  22. bull_5o = is5o(1) and not is5o(1)[1]
  23. bull_wolf = isWolf(1) and not isWolf(1)[1]
  24. bull_hns = isHnS(1) and not isHnS(1)[1]
  25. bull_contria = isConTria(1) and not isConTria(1)[1]
  26. bull_exptria = isExpTria(1) and not isExpTria(1)[1]
  27.  
  28. bear_patterns = bear_abcd and bear_bat and bear_altbat and bear_butterfly and bear_gartley and bear_crab and bear_shark and bear_5o and bear_wolf and bear_hns and bear_contria and bear_exptria
  29. bull_patterns = bull_abcd and bull_bat and bull_altbat and bull_butterfly and bull_gartley and bull_crab and bull_shark and bull_5o and bull_wolf and bull_hns and bull_contria and bull_exptria
  30.  
  31. all_patterns = bear_patterns and bull_patterns
  32. alertcondition(condition=all_patterns, title='all patterns', message='The Patterns')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement