mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 08:33:36 +00:00
12 lines
608 B
Python
12 lines
608 B
Python
from .base import BaseObjective, CompositeObjective
|
|
from .penalties import (PnLObjective, VolatilityPenalty, HoldingCostPenalty,
|
|
LostOpportunityCostPenalty, InventoryRiskPenalty, SpreadCaptureReward)
|
|
from .factory import make_objective, make_composite, retail_objective, market_making_objective
|
|
|
|
__all__ = [
|
|
'BaseObjective', 'CompositeObjective',
|
|
'PnLObjective', 'VolatilityPenalty', 'HoldingCostPenalty',
|
|
'LostOpportunityCostPenalty', 'InventoryRiskPenalty', 'SpreadCaptureReward',
|
|
'make_objective', 'make_composite', 'retail_objective', 'market_making_objective',
|
|
]
|