We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you are claiming a Discrete action space, I would expect something like
if action_type == 1: #BUY elif action_type ==2: #SELL else: # HOLD
Why the action_type is a float? I'm new in to gym environments. so maybe this is more of a question
Stock-Trading-Environment/env/StockTradingEnv.py
Line 70 in e72167b
The text was updated successfully, but these errors were encountered:
If you are claiming a Discrete action space, I would expect something like if action_type == 1: #BUY elif action_type ==2: #SELL else: # HOLD Why the action_type is a float? I'm new in to gym environments. so maybe this is more of a question Stock-Trading-Environment/env/StockTradingEnv.py Line 70 in e72167b if action_type < 1:
如果您要声明一个离散动作空间,我会期望类似 if action_type == 1: #BUY elif action_type ==2: #SELL else: # HOLD 为什么 action_type 是浮点数?我是健身房环境的新手。所以也许这更像是一个问题 Stock-Trading-Environment/env/StockTradingEnv.py Line 70 in e72167b if action_type < 1: action_type == 0:#BUY action_type == 1:#SELL action_type == 2:#HOLD
如果您要声明一个离散动作空间,我会期望类似
为什么 action_type 是浮点数?我是健身房环境的新手。所以也许这更像是一个问题
Sorry, something went wrong.
No branches or pull requests
If you are claiming a Discrete action space, I would expect something like
Why the action_type is a float? I'm new in to gym environments. so maybe this is more of a question
Stock-Trading-Environment/env/StockTradingEnv.py
Line 70 in e72167b
The text was updated successfully, but these errors were encountered: