| 141 | |
| 142 | |
| 143 | class NoBenchmark(ValueError): |
| 144 | def __init__(self): |
| 145 | super(NoBenchmark, self).__init__( |
| 146 | 'Must specify either benchmark_sid or benchmark_returns.', |
| 147 | ) |
| 148 | |
| 149 | |
| 150 | class TradingAlgorithm(object): |
no outgoing calls
no test coverage detected