| 300 | |
| 301 | |
| 302 | class PriceIncrement(Object): |
| 303 | def __init__(self): |
| 304 | self.lowEdge = 0.0 |
| 305 | self.increment = 0.0 |
| 306 | |
| 307 | def __str__(self): |
| 308 | return "LowEdge: %s, Increment: %s" % ( |
| 309 | floatMaxString(self.lowEdge), |
| 310 | floatMaxString(self.increment), |
| 311 | ) |
| 312 | |
| 313 | |
| 314 | class HistoricalTick(Object): |
no outgoing calls
no test coverage detected