stable/freqtrade/freqai/RL/Base4ActionRLEnv.py

133 lines
4.8 KiB
Python
Raw Normal View History

2022-08-25 19:40:16 +00:00
import logging
from enum import Enum
from gym import spaces
from freqtrade.freqai.RL.BaseEnvironment import BaseEnvironment, Positions
2022-08-25 19:40:16 +00:00
logger = logging.getLogger(__name__)
class Actions(Enum):
Neutral = 0
Exit = 1
Long_enter = 2
Short_enter = 3
class Base4ActionRLEnv(BaseEnvironment):
2022-08-25 19:40:16 +00:00
"""
Base class for a 4 action environment
2022-08-25 19:40:16 +00:00
"""
2022-12-05 19:22:54 +00:00
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.actions = Actions
2022-08-25 19:40:16 +00:00
def set_action_space(self):
2022-08-25 19:40:16 +00:00
self.action_space = spaces.Discrete(len(Actions))
def step(self, action: int):
"""
Logic for a single step (incrementing one candle in time)
by the agent
:param: action: int = the action type that the agent plans
to take for the current step.
:returns:
observation = current state of environment
step_reward = the reward from `calculate_reward()`
_done = if the agent "died" or if the candles finished
info = dict passed back to openai gym lib
"""
2022-08-25 19:40:16 +00:00
self._done = False
self._current_tick += 1
if self._current_tick == self._end_tick:
self._done = True
self._update_unrealized_total_profit()
2022-08-25 19:40:16 +00:00
step_reward = self.calculate_reward(action)
self.total_reward += step_reward
2023-03-11 22:32:55 +00:00
self.tensorboard_log(self.actions._member_names_[action], category="actions")
2022-08-25 19:40:16 +00:00
trade_type = None
if self.is_tradesignal(action):
if action == Actions.Neutral.value:
self._position = Positions.Neutral
trade_type = "neutral"
self._last_trade_tick = None
elif action == Actions.Long_enter.value:
self._position = Positions.Long
trade_type = "enter_long"
2022-08-25 19:40:16 +00:00
self._last_trade_tick = self._current_tick
elif action == Actions.Short_enter.value:
self._position = Positions.Short
trade_type = "enter_short"
2022-08-25 19:40:16 +00:00
self._last_trade_tick = self._current_tick
elif action == Actions.Exit.value:
self._update_total_profit()
self._position = Positions.Neutral
trade_type = "exit"
2022-08-25 19:40:16 +00:00
self._last_trade_tick = None
else:
print("case not defined")
if trade_type is not None:
self.trade_history.append(
{'price': self.current_price(), 'index': self._current_tick,
'type': trade_type, 'profit': self.get_unrealized_profit()})
2022-08-25 19:40:16 +00:00
2022-12-16 11:14:05 +00:00
if (self._total_profit < self.max_drawdown or
self._total_unrealized_profit < self.max_drawdown):
2022-08-25 19:40:16 +00:00
self._done = True
self._position_history.append(self._position)
info = dict(
tick=self._current_tick,
action=action,
2022-08-25 19:40:16 +00:00
total_reward=self.total_reward,
total_profit=self._total_profit,
position=self._position.value,
trade_duration=self.get_trade_duration(),
current_profit_pct=self.get_unrealized_profit()
2022-08-25 19:40:16 +00:00
)
observation = self._get_observation()
self._update_history(info)
return observation, step_reward, self._done, info
def is_tradesignal(self, action: int) -> bool:
2022-08-25 19:40:16 +00:00
"""
Determine if the signal is a trade signal
e.g.: agent wants a Actions.Long_exit while it is in a Positions.short
"""
return not ((action == Actions.Neutral.value and self._position == Positions.Neutral) or
(action == Actions.Neutral.value and self._position == Positions.Short) or
(action == Actions.Neutral.value and self._position == Positions.Long) or
(action == Actions.Short_enter.value and self._position == Positions.Short) or
(action == Actions.Short_enter.value and self._position == Positions.Long) or
2022-08-25 19:40:16 +00:00
(action == Actions.Exit.value and self._position == Positions.Neutral) or
(action == Actions.Long_enter.value and self._position == Positions.Long) or
(action == Actions.Long_enter.value and self._position == Positions.Short))
def _is_valid(self, action: int) -> bool:
2022-08-25 19:40:16 +00:00
"""
Determine if the signal is valid.
e.g.: agent wants a Actions.Long_exit while it is in a Positions.short
"""
# Agent should only try to exit if it is in position
if action == Actions.Exit.value:
2022-08-25 19:40:16 +00:00
if self._position not in (Positions.Short, Positions.Long):
return False
# Agent should only try to enter if it is not in position
if action in (Actions.Short_enter.value, Actions.Long_enter.value):
if self._position != Positions.Neutral:
return False
return True