(self)
| 119 | self.update() |
| 120 | |
| 121 | def make_record(self): |
| 122 | return [self.name,round(self.price,2),self.date,minutes_to_str(self.time),round(self.change,2),self.open,round(self.high,2), |
| 123 | round(self.low,2),self.volume] |
| 124 | |
| 125 | class MarketSimulator(object): |
| 126 | def __init__(self): |