Coverage for src/finbot/execution/policy.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-21 17:12 +0000

1from enum import StrEnum 

2 

3 

4class ExecutionPolicy(StrEnum): 

5 NEXT_OPEN = "next_open" 

6 SAME_CLOSE = "same_close"