7 lines
176 B
Python
7 lines
176 B
Python
from dataclasses import dataclass
|
|
|
|
from .option_spread_strategy import OptionSpreadStrategy
|
|
|
|
@dataclass
|
|
class DeltaTargetStrategy(OptionSpreadStrategy):
|
|
delta_target: float |