Package edu.cuny.cat.trader.strategy

Trading agent's trading strategies.

See:
          Description

Interface Summary
AdaptiveStrategy Strategies implementing this interface indicate that they are based on a learning algorithm.
FixedQuantityStrategy Strategies implementing this interface indicate that they bid a constant quantity in each auction round.
Strategy Classes implementing this interface define trading strategies for round-robin traders.
 

Class Summary
AbstractStrategy An abstract implementation of the Strategy interface that provides skeleton functionality for making trading decisions.
AdaptiveStrategyImpl An abstract implementation of AdaptiveStrategy and FixedQuantityStrategy.
DiscreteLearnerStrategy A class representing a strategy in which we adapt our bids using a discrete learning algorithm.
FixedQuantityStrategyImpl An abstract implementation of FixedQuantityStrategy.
GDLStrategy A modified implementation of the Gjerstad Dickhaut strategy using a linear interpolation instead of a cubic one in the original GDStrategy.
GDStrategy An implementation of the Gjerstad Dickhaut strategy.
MomentumStrategy A trading strategy that learns to adapt the price to offer.
PriestVanTolStrategy An implementation of the Priest and van Tol strategy.
PureSimpleStrategy A trading strategy in which we bid a constant mark-up on the agent's private value.
RandomConstrainedStrategy A trading strategy that in which we bid a different random markup on our agent's private value in each auction round.
StimuliResponseStrategy A trading strategy that uses a stimuli-response learning algorithm, such as the Roth-Erev algorithm, to adapt its trading behaviour in successive auction rounds by using the agent's profits in the last round as a reward signal.
TruthTellingStrategy A trading strategy that always bids at its private value.
ZIPStrategy An implementation of the Zero-Intelligence-Plus (ZIP) strategy.
ZIQStrategy A simplified implementation of the Zero-Intelligence-Plus (ZIP) strategy, which works well in CDAs.
 

Package edu.cuny.cat.trader.strategy Description

Trading agent's trading strategies.