Convenience function to create a new ANNEM agent with specified parameters.

create_annem_agent(agent_id, agent_type, initial_wealth = 1e+06)

Arguments

agent_id

Character string for agent identifier

agent_type

Agent type (neural_momentum, contrarian_ai, fundamentalist_ml, adaptive_noise, social_network, meta_learning)

initial_wealth

Initial wealth amount (default: 1,000,000)

Value

ANNEMAgent reference class object

Examples

if (FALSE) { # \dontrun{
agent <- create_annem_agent("agent_001", "neural_momentum", 1500000)
} # }