E14: remove hardcoded local paths from the docs

Indicators-Overview.md referenced the absolute author-machine paths
D:\Coding\Wickra\crates\... and D:\Coding\Wickra\bindings\... in its
"Source-of-truth files" section, and seven trend-indicator pages had
Node examples that did require('D:/Coding/Wickra/bindings/node').

Replace the overview paths with repo-relative GitHub links and change
the Node examples to require('wickra'), the published npm package name
a reader would actually use. No D:/Coding path remains anywhere in docs.
This commit is contained in:
kingchenc
2026-05-22 16:18:48 +02:00
parent 278b6afaa4
commit b3ddbea584
8 changed files with 14 additions and 13 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ array.
### Node
```javascript
const ta = require('D:/Coding/Wickra/bindings/node');
const ta = require('wickra');
const sma = new ta.SMA(3);
console.log(sma.batch([2, 4, 6, 8, 10]));
console.log('warmupPeriod:', sma.warmupPeriod());