7 lines
178 B
Python
7 lines
178 B
Python
|
from dataclasses import dataclass
|
||
|
|
||
|
from .option_spread_strategy import OptionSpreadStrategy
|
||
|
|
||
|
@dataclass
|
||
|
class CreditTargetStrategy(OptionSpreadStrategy):
|
||
|
credit_target: float
|