@@ -349,8 +349,6 @@ class EnergyLearningStrategy(TorchLearningStrategy, MinMaxStrategy):
349349 Number of time steps for which the agent forecasts market conditions. Defaults to 12.
350350 max_bid_price : float
351351 Maximum allowable bid price. Defaults to 100.
352- max_demand : float
353- Maximum demand capacity of the unit. Defaults to 10e3.
354352 device : str
355353 Device for computation, such as "cpu" or "cuda". Defaults to "cpu".
356354 float_type : str
@@ -363,8 +361,6 @@ class EnergyLearningStrategy(TorchLearningStrategy, MinMaxStrategy):
363361 Class of the neural network architecture used for the actor network. Defaults to MLPActor.
364362 actor : torch.nn.Module
365363 Actor network for determining actions.
366- order_types : list[str]
367- Types of market orders supported by the strategy. Defaults to ["SB"].
368364 action_noise : NormalActionNoise
369365 Noise model added to actions during learning to encourage exploration. Defaults to None.
370366 collect_initial_experience_mode : bool
@@ -390,9 +386,6 @@ def __init__(self, *args, **kwargs):
390386 ** kwargs ,
391387 )
392388
393- # define allowed order types
394- self .order_types = kwargs .get ("order_types" , ["SB" ])
395-
396389 def calculate_bids (
397390 self ,
398391 unit : SupportsMinMax ,
@@ -835,8 +828,6 @@ class StorageEnergyLearningStrategy(TorchLearningStrategy, MinMaxChargeStrategy)
835828 Number of time steps for forecasting market conditions. Defaults to 24.
836829 max_bid_price : float
837830 Maximum allowable bid price. Defaults to 100.
838- max_demand : float
839- Maximum demand capacity of the storage. Defaults to 10e3.
840831 device : str
841832 Device used for computation ("cpu" or "cuda"). Defaults to "cpu".
842833 float_type : str
@@ -849,8 +840,6 @@ class StorageEnergyLearningStrategy(TorchLearningStrategy, MinMaxChargeStrategy)
849840 Class of the neural network for the actor network. Defaults to MLPActor.
850841 actor : torch.nn.Module
851842 The neural network used to predict actions.
852- order_types : list[str]
853- Types of market orders used by the strategy. Defaults to ["SB"].
854843 action_noise : NormalActionNoise
855844 Noise model added to actions during learning for exploration. Defaults to None.
856845 collect_initial_experience_mode : bool
@@ -876,9 +865,6 @@ def __init__(self, *args, **kwargs):
876865 ** kwargs ,
877866 )
878867
879- # define allowed order types
880- self .order_types = kwargs .get ("order_types" , ["SB" ])
881-
882868 def get_individual_observations (
883869 self , unit : SupportsMinMaxCharge , start : datetime , end : datetime
884870 ):
@@ -1146,8 +1132,6 @@ class RenewableEnergyLearningSingleBidStrategy(EnergyLearningSingleBidStrategy):
11461132 Class of the neural network for the actor network. Defaults to MLPActor.
11471133 actor : torch.nn.Module
11481134 The neural network used to predict actions.
1149- order_types : list[str]
1150- Types of market orders used by the strategy. Defaults to ["SB"].
11511135 action_noise : NormalActionNoise
11521136 Noise model added to actions during learning for exploration. Defaults to None.
11531137 collect_initial_experience_mode : bool
@@ -1173,9 +1157,6 @@ def __init__(self, *args, **kwargs):
11731157 ** kwargs ,
11741158 )
11751159
1176- # define allowed order types
1177- self .order_types = kwargs .get ("order_types" , ["SB" ])
1178-
11791160 def get_individual_observations (
11801161 self , unit : SupportsMinMaxCharge , start : datetime , end : datetime
11811162 ):
0 commit comments