@dwlf/charting 1.1.2 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -259,7 +259,7 @@ import { DWLFChart } from '@dwlf/charting';
|
|
|
259
259
|
import '@dwlf/charting/styles';
|
|
260
260
|
|
|
261
261
|
// Compute indicators (timestamps must match your candle timestamps)
|
|
262
|
-
const ema8 = EMA.computeEMA(candles, 8);
|
|
262
|
+
const ema8 = EMA.computeEMA(candles, { length: 8 });
|
|
263
263
|
const bb = Bollinger.computeBollingerBands(candles, { length: 20 });
|
|
264
264
|
|
|
265
265
|
// Build chart spec — remember to convert timestamps to milliseconds
|
|
@@ -278,6 +278,10 @@ const spec = {
|
|
|
278
278
|
};
|
|
279
279
|
```
|
|
280
280
|
|
|
281
|
+
## Tutorial: Build Your First Dashboard
|
|
282
|
+
|
|
283
|
+
For a complete step-by-step guide to building a market intelligence dashboard with `@dwlf/charting`, `@dwlf/indicators`, and the DWLF API, see **[Build Your First DWLF Dashboard](docs/BUILD-YOUR-FIRST-DASHBOARD.md)**.
|
|
284
|
+
|
|
281
285
|
## Used By
|
|
282
286
|
|
|
283
287
|
This is the same charting engine that powers [DWLF](https://dwlf.co.uk) — a market intelligence platform for AI agents and traders.
|
package/package.json
CHANGED