Skip to content
New issue

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

considering transaction cost when calculate available_amount #224

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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