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
현재 코드에서 agent 매수 및 매도 행동 함수에서
self.avg_buy_price = (self.avg_buy_price * self.num_stocks + curr_price) / (self.num_stocks + trading_unit)
이라고 되어있는데
self.avg_buy_price = (self.avg_buy_price * self.num_stocks + invest_amount) / (self.num_stocks + trading_unit)
혹은
self.avg_buy_price = (self.avg_buy_price * self.num_stocks + curr_price * trading_unit) / (self.num_stocks + trading_unit)
으로 수정해야 하지않나 생각합니다. 제가 잘못 알고 있다면 알려주세요 감사합니다.
The text was updated successfully, but these errors were encountered:
@ChulgooKim 맞네요! 제보 감사합니다. 수정하겠습니다 : )
Sorry, something went wrong.
No branches or pull requests
현재 코드에서 agent 매수 및 매도 행동 함수에서
이라고 되어있는데
혹은
으로 수정해야 하지않나 생각합니다.
제가 잘못 알고 있다면 알려주세요 감사합니다.
The text was updated successfully, but these errors were encountered: