Skip to content

Commit

Permalink
Merge pull request #1 from 1024064118/1024064118_bugfix
Browse files Browse the repository at this point in the history
Create env_stocktrading.py
  • Loading branch information
1024064118 committed May 14, 2021
2 parents dc20b0b + c0fe534 commit 3708324
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 3708324

Please sign in to comment.