Metadata-Version: 2.4
Name: bruedemo
Version: 0.2.1
Summary: Internal test build of the Brue trading-strategy language engine. Will be republished under its final name; do not depend on this package.
License-Expression: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# bruedemo

Internal TEST build of the Brue trading-strategy language engine
(pure Python). Published for real-world install testing by the
London Strategic Edge team only. The engine will be republished under
its final name; do not depend on this package.

```python
import brue

r = brue.run("trend.brue", "EURJPY_1h.csv")   # one line: strategy file, data, result
r.stats

# reusable objects when you want them
strategy = brue.Strategy(source)
result = strategy.backtest(df)
indicator = brue.Indicator(source)
indicator.compute(df)
```
