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
Hello @AminHP , why is the low bound of balance, equity and features is -np.inf? see code:
self.observation_space = spaces.Dict({ 'balance': spaces.Box(low=-np.inf, high=np.inf, shape=(1,)), 'equity': spaces.Box(low=-np.inf, high=np.inf, shape=(1,)), 'margin': spaces.Box(low=-np.inf, high=np.inf, shape=(1,)), 'features': spaces.Box(low=-np.inf, high=np.inf, shape=self.features_shape), 'orders': spaces.Box( low=-np.inf, high=np.inf, shape=(len(self.trading_symbols), self.symbol_max_orders, 3) ) # symbol, order_i -> [entry_price, volume, profit] })
shouldnt low bound start from zero? meaning its impossible for balance be below 0
The text was updated successfully, but these errors were encountered:
Yes, it should start from zero. Thanks for noticing!
Sorry, something went wrong.
No branches or pull requests
Hello @AminHP ,
why is the low bound of balance, equity and features is -np.inf? see code:
shouldnt low bound start from zero? meaning its impossible for balance be below 0
The text was updated successfully, but these errors were encountered: