remove keep low profit
This commit is contained in:
		| @@ -127,14 +127,6 @@ class Base3ActionRLEnv(gym.Env): | ||||
|             Action: Short, position: Long -> Close Long and Open Short | ||||
|             """ | ||||
|  | ||||
|             u_pnl = self.get_unrealized_profit() | ||||
|             # keep current position if upnl from -0.4% to 0.4% | ||||
|             if u_pnl <= 0.004 and u_pnl >= -0.004 and self._position != Positions.Neutral: | ||||
|                 if action == Actions.Long.value and self._position == Positions.Short: | ||||
|                     self._position = Positions.Short | ||||
|                 elif action == Actions.Short.value and self._position == Positions.Long: | ||||
|                     self._position = Positions.Long | ||||
|             else: | ||||
|             if action == Actions.Neutral.value: | ||||
|                 self._position = Positions.Neutral | ||||
|                 trade_type = "neutral" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user