Create and Test Forex Strategies
Multi-Market tests define how many market checks are performed and how many must pass.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Multi-Market tests ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; The count of the Multi-Market tests to perform. count_of_tests = 5 ; The minimum count of the passed tests. ; A test is considered as "passed" if it passed the Acceptance Criteria. ; Must be less than or equal to "count_of_tests". min_passed_tests = 3
count_of_tests must be 1 or greater.min_passed_tests must be 1 or greater.min_passed_tests must be less than or equal to count_of_tests.min_passed_tests.Moderate filter:
count_of_tests = 8 min_passed_tests = 5
Strict filter:
count_of_tests = 12 min_passed_tests = 10