Skip to content

Instantly share code, notes, and snippets.

View JulianJesacher's full-sized avatar
😄

Julian Jesacher JulianJesacher

😄
  • Technical University of Munich
  • South Tyrol / Munich
View GitHub Profile
def this_is_a_test():
pass
class ContestantTrader(Trader):
def __init__(self, name, prediction_offness, capital=10000):
super().__init__(name, capital)
self.trades = []
self.total_asset_value = capital
# guess on dividends
self.prediction_offness = prediction_offness
self.dividend_estimate = None