Skip to content

Commit

Permalink
Fixing run.py to address invest_all behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
poliwop committed Jun 27, 2023
1 parent 6d048af commit e3ab50f
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions hydradx/model/run.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import time

from .amm.global_state import GlobalState
from copy import deepcopy


def run(initial_state: GlobalState, time_steps: int, silent: bool = False) -> list:
Expand All @@ -21,16 +22,11 @@ def run(initial_state: GlobalState, time_steps: int, silent: bool = False) -> li
# market evolutions
new_global_state.evolve()

# agent actions
# agents = new_global_state.agents
# for agent_id, agent in agents.items():
# if agent.trade_strategy:
# new_global_state = agent.trade_strategy.execute(new_global_state, agent.unique_id)

for agent_id in new_global_state.agents:
# works as long as no trade_strategy adds or removes agents
if new_global_state.agents[agent_id].trade_strategy:
new_global_state = new_global_state.agents[agent_id].trade_strategy.execute(new_global_state, agent_id)
agent_ids = deepcopy(new_global_state.agents.keys())
for agent_id in agent_ids:
agent = new_global_state.agents[agent_id]
if agent.trade_strategy:
new_global_state = agent.trade_strategy.execute(new_global_state, agent.unique_id)

events.append(new_global_state.archive())

Expand Down

0 comments on commit e3ab50f

Please sign in to comment.