Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions finrl/env/env_stocktrading.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _buy_stock(self, index, action):
def _do_buy():
if self.state[index+1]>0:
#Buy only if the price is > 0 (no missing data in this particular date)
available_amount = self.state[0] // self.state[index+1]
available_amount = self.state[0] // ((self.state[index+1])*(1+ self.buy_cost_pct))
# print('available_amount:{}'.format(available_amount))

#update balance
Expand Down Expand Up @@ -377,4 +377,4 @@ def _seed(self, seed=None):
def get_sb_env(self):
e = DummyVecEnv([lambda: self])
obs = e.reset()
return e, obs
return e, obs