| 259 | |
| 260 | |
| 261 | class TickAttrib(Object): |
| 262 | def __init__(self): |
| 263 | self.canAutoExecute = False |
| 264 | self.pastLimit = False |
| 265 | self.preOpen = False |
| 266 | |
| 267 | def __str__(self): |
| 268 | return "CanAutoExecute: %d, PastLimit: %d, PreOpen: %d" % ( |
| 269 | self.canAutoExecute, |
| 270 | self.pastLimit, |
| 271 | self.preOpen, |
| 272 | ) |
| 273 | |
| 274 | |
| 275 | class TickAttribBidAsk(Object): |
no outgoing calls
no test coverage detected