Skip to content

Commit 6ae426c

Browse files
feat(LINREG): Add Linear Regression
1 parent c8c8ff6 commit 6ae426c

10 files changed

+747
-2
lines changed

.lintstagedrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"*.{js,jsx,ts,tsx}": ["npm run fix:code"]
2+
"*.{js,jsx,ts,tsx}": ["eslint --fix"]
33
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ Most of the time, the minimum amount of data depends on the interval / time peri
132132
1. Double Exponential Moving Average (DEMA)
133133
1. Dual Moving Average (DMA)
134134
1. Exponential Moving Average (EMA)
135+
1. Linear Regression (LINREG)
135136
1. Mean Absolute Deviation (MAD)
136137
1. Momentum (MOM / MTM)
137138
1. Moving Average Convergence Divergence (MACD)

docs/classes/LinearRegression.html

+178
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
<!doctype html>
2+
<html class="default" lang="en" data-base="..">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="x-ua-compatible" content="IE=edge" />
6+
<title>LinearRegression | trading-signals</title>
7+
<meta name="description" content="Documentation for trading-signals" />
8+
<meta name="viewport" content="width=device-width, initial-scale=1" />
9+
<link rel="stylesheet" href="../assets/style.css" />
10+
<link rel="stylesheet" href="../assets/highlight.css" />
11+
<script defer src="../assets/main.js"></script>
12+
<script async src="../assets/icons.js" id="tsd-icons-script"></script>
13+
<script async src="../assets/search.js" id="tsd-search-script"></script>
14+
<script async src="../assets/navigation.js" id="tsd-nav-script"></script>
15+
<script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script>
16+
</head>
17+
<body>
18+
<script>
19+
document.documentElement.dataset.theme = localStorage.getItem('tsd-theme') || 'os';
20+
document.body.style.display = 'none';
21+
setTimeout(() => (app ? app.showPage() : document.body.style.removeProperty('display')), 500);
22+
</script>
23+
<header class="tsd-page-toolbar">
24+
<div class="tsd-toolbar-contents container">
25+
<div class="table-cell" id="tsd-search">
26+
<div class="field">
27+
<label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption">
28+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
29+
<use href="../assets/icons.svg#icon-search"></use>
30+
</svg>
31+
</label>
32+
<input type="text" id="tsd-search-field" aria-label="Search" />
33+
</div>
34+
<div class="field"><div id="tsd-toolbar-links"></div></div>
35+
<ul class="results">
36+
<li class="state loading">Preparing search index...</li>
37+
<li class="state failure">The search index is not available</li>
38+
</ul>
39+
<a href="../index.html" class="title">trading-signals</a>
40+
</div>
41+
</div>
42+
</header>
43+
<div class="container container-main">
44+
<div class="col-content">
45+
<div class="tsd-page-title">
46+
<ul class="tsd-breadcrumb">
47+
<li><a href="../modules.html">trading-signals</a></li>
48+
<li><a href="LinearRegression.html">LinearRegression</a></li>
49+
</ul>
50+
<h1>Classes LinearRegression and FasterLinearRegression</h1>
51+
</div>
52+
<section class="tsd-panel tsd-comment">
53+
<div class="tsd-comment tsd-typography">
54+
<p>Linear Regression (LinearRegression) Type: Trend</p>
55+
<p>
56+
Linear regression is a statistical method used to find relationships between variables. In trading, it is
57+
used to identify and analyze price trends by fitting a straight line through a set of data points. This
58+
implementation calculates the basic regression line parameters (slope, intercept) and predicts the next
59+
value.
60+
</p>
61+
</div>
62+
</section>
63+
<section class="tsd-panel tsd-hierarchy">
64+
<h4>Hierarchy</h4>
65+
<ul class="tsd-hierarchy">
66+
<li>
67+
<span>TechnicalIndicator</span>
68+
<ul class="tsd-hierarchy">
69+
<li><span class="target">LinearRegression</span></li>
70+
<li><span class="target">FasterLinearRegression</span></li>
71+
</ul>
72+
</li>
73+
</ul>
74+
</section>
75+
<section class="tsd-panel-group tsd-index-group">
76+
<section class="tsd-panel tsd-index-panel">
77+
<h3>Properties</h3>
78+
<ul class="tsd-index-list">
79+
<li><a href="#prices">prices</a></li>
80+
<li><a href="#period">period</a></li>
81+
</ul>
82+
</section>
83+
</section>
84+
<section class="tsd-panel">
85+
<h3>Constructor</h3>
86+
<ul class="tsd-signatures">
87+
<li class="tsd-signature">
88+
<span class="tsd-signature-keyword">new</span> <span class="tsd-kind-class">LinearRegression</span>
89+
<span class="tsd-signature-symbol">(</span>
90+
<span class="tsd-kind-parameter">config</span>
91+
<span class="tsd-signature-symbol">: </span>
92+
<span class="tsd-signature-type">LinearRegressionConfig</span>
93+
<span class="tsd-signature-symbol">)</span>
94+
</li>
95+
</ul>
96+
<h4>Parameters</h4>
97+
<table>
98+
<thead>
99+
<tr>
100+
<th>Name</th>
101+
<th>Type</th>
102+
<th>Description</th>
103+
</tr>
104+
</thead>
105+
<tbody>
106+
<tr>
107+
<td><code>config</code></td>
108+
<td><span class="tsd-signature-type">LinearRegressionConfig</span></td>
109+
<td>Configuration object containing the period for regression analysis</td>
110+
</tr>
111+
</tbody>
112+
</table>
113+
</section>
114+
<section class="tsd-panel">
115+
<h3>Methods</h3>
116+
<ul class="tsd-signatures">
117+
<li class="tsd-signature">
118+
<span class="tsd-kind-method">update</span>
119+
<span class="tsd-signature-symbol">(</span>
120+
<span class="tsd-kind-parameter">price</span>
121+
<span class="tsd-signature-symbol">: </span>
122+
<span class="tsd-signature-type">BigSource | number</span>,
123+
<span class="tsd-kind-parameter">replace</span>
124+
<span class="tsd-signature-symbol">: </span>
125+
<span class="tsd-signature-type">boolean</span>
126+
<span class="tsd-signature-symbol">)</span>
127+
<span class="tsd-signature-symbol">: </span>
128+
<span class="tsd-signature-type">LinearRegressionResult | FasterLinearRegressionResult</span>
129+
<span class="tsd-signature-symbol"> | </span>
130+
<span class="tsd-signature-type">null</span>
131+
</li>
132+
</ul>
133+
<h4>Parameters</h4>
134+
<table>
135+
<thead>
136+
<tr>
137+
<th>Name</th>
138+
<th>Type</th>
139+
<th>Description</th>
140+
</tr>
141+
</thead>
142+
<tbody>
143+
<tr>
144+
<td><code>price</code></td>
145+
<td><span class="tsd-signature-type">BigSource | number</span></td>
146+
<td>The new price value</td>
147+
</tr>
148+
<tr>
149+
<td><code>replace</code></td>
150+
<td><span class="tsd-signature-type">boolean</span></td>
151+
<td>Whether to replace the last value</td>
152+
</tr>
153+
</tbody>
154+
</table>
155+
<h4>Returns</h4>
156+
<p>The updated regression results or null if insufficient data</p>
157+
158+
<h3>Results</h3>
159+
<p>Both implementations return an object containing:</p>
160+
<ul>
161+
<li><code>prediction</code>: The predicted value for the next period</li>
162+
<li><code>slope</code>: The slope of the regression line</li>
163+
<li><code>intercept</code>: The y-intercept of the regression line</li>
164+
</ul>
165+
166+
<h3>Optimizations</h3>
167+
<p>
168+
The FasterLinearRegression implementation includes special handling for perfect linear trends and uses
169+
native JavaScript numbers for better performance.
170+
</p>
171+
</section>
172+
</div>
173+
</div>
174+
<footer>
175+
<p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
176+
</footer>
177+
</body>
178+
</html>

docs/classes/LinearRegression.md

+128
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
[trading-signals](../README.md) / [Exports](../modules.md) / LinearRegression
2+
3+
# Class: LinearRegression
4+
5+
Linear Regression (LinearRegression) Type: Trend
6+
7+
Linear regression is a statistical method used to find relationships between variables. In trading, it is used to identify and analyze price trends by fitting a straight line through a set of data points. This implementation calculates the basic regression line parameters (slope, intercept) and predicts the next value.
8+
9+
## Hierarchy
10+
11+
- [`TechnicalIndicator`](TechnicalIndicator.md)\<[`LinearRegressionResult`](../interfaces/LinearRegressionResult.md), `BigSource`\>
12+
13+
**`LinearRegression`**
14+
15+
## Table of contents
16+
17+
### Constructors
18+
19+
- [constructor](LinearRegression.md#constructor)
20+
21+
### Properties
22+
23+
- [prices](LinearRegression.md#prices)
24+
- [period](LinearRegression.md#period)
25+
26+
### Accessors
27+
28+
- [isStable](LinearRegression.md#isstable)
29+
30+
### Methods
31+
32+
- [update](LinearRegression.md#update)
33+
- [getResultOrThrow](LinearRegression.md#getresultorthrow)
34+
35+
## Constructors
36+
37+
### constructor
38+
39+
**new LinearRegression**(`config`)
40+
41+
#### Parameters
42+
43+
| Name | Type | Description |
44+
| :------- | :----------------------- | :----------------------------------------------------------------- |
45+
| `config` | `LinearRegressionConfig` | Configuration object containing the period for regression analysis |
46+
47+
#### Overrides
48+
49+
[TechnicalIndicator](TechnicalIndicator.md).[constructor](TechnicalIndicator.md#constructor)
50+
51+
## Properties
52+
53+
### prices
54+
55+
`Readonly` **prices**: `BigSource`[] = `[]`
56+
57+
Array of price values used in the calculation
58+
59+
### period
60+
61+
`Private` `Readonly` **period**: `number`
62+
63+
The number of periods to analyze
64+
65+
## Methods
66+
67+
### update
68+
69+
**update**(`price`, `replace`): `LinearRegressionResult` | `null`
70+
71+
Update the indicator's state with a new price value
72+
73+
#### Parameters
74+
75+
| Name | Type | Description |
76+
| :-------- | :---------- | :-------------------------------- |
77+
| `price` | `BigSource` | The new price value |
78+
| `replace` | `boolean` | Whether to replace the last value |
79+
80+
#### Returns
81+
82+
`LinearRegressionResult` | `null`
83+
84+
The updated regression results or null if insufficient data
85+
86+
### getResultOrThrow
87+
88+
**getResultOrThrow**(): `LinearRegressionResult`
89+
90+
Get the current result or throw an error if the indicator is not stable
91+
92+
#### Returns
93+
94+
`LinearRegressionResult`
95+
96+
The current regression results containing slope, intercept, and prediction
97+
98+
#### Throws
99+
100+
`NotEnoughDataError`
101+
102+
If there is not enough data to calculate the regression
103+
104+
## Accessors
105+
106+
### isStable
107+
108+
`get` **isStable**(): `boolean`
109+
110+
#### Returns
111+
112+
`boolean`
113+
114+
Whether the indicator has enough data to provide stable results
115+
116+
# Class: FasterLinearRegression
117+
118+
A faster implementation of LinearRegression using number type instead of Big.js for calculations.
119+
120+
## Hierarchy
121+
122+
- [`TechnicalIndicator`](TechnicalIndicator.md)\<[`FasterLinearRegressionResult`](../interfaces/FasterLinearRegressionResult.md), `number`\>
123+
124+
**`FasterLinearRegression`**
125+
126+
## Description
127+
128+
This implementation provides the same functionality as LinearRegression but uses native JavaScript numbers instead of Big.js for better performance. It includes special optimizations for perfect linear trends.
+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
[trading-signals](../README.md) / [Exports](../modules.md) / LinearRegressionResult
2+
3+
# Interface: LinearRegressionResult
4+
5+
Results returned by the Linear Regression (LinearRegression) indicator calculations.
6+
7+
## Properties
8+
9+
### prediction
10+
11+
**prediction**: `Big` | `number`
12+
13+
The predicted value for the next period based on the regression line.
14+
15+
---
16+
17+
### slope
18+
19+
**slope**: `Big` | `number`
20+
21+
The slope of the regression line, representing the average rate of change per period.
22+
23+
---
24+
25+
### intercept
26+
27+
**intercept**: `Big` | `number`
28+
29+
The y-intercept of the regression line, representing the base level (value at x=0).
30+
31+
---
32+
33+
### rSquared
34+
35+
**rSquared**: `Big`
36+
37+
The R-squared value (coefficient of determination), indicating how well the regression line fits the data (0-1)
38+
39+
---
40+
41+
### standardError
42+
43+
**standardError**: `Big`
44+
45+
The standard error of the regression, measuring the average distance between the data points and the regression line
46+
47+
---
48+
49+
### meanX
50+
51+
**meanX**: `Big`
52+
53+
The mean of the x values (time periods)
54+
55+
---
56+
57+
### meanY
58+
59+
**meanY**: `Big`
60+
61+
The mean of the y values (prices)
62+
63+
---
64+
65+
### confidenceInterval
66+
67+
**confidenceInterval**: `Object`
68+
69+
Confidence intervals for the regression parameters
70+
71+
#### Type declaration
72+
73+
| Name | Type | Description |
74+
| :---------- | :------------- | :-------------------------------------------------------------- |
75+
| `slope` | [`Big`, `Big`] | The lower and upper bounds of the slope confidence interval |
76+
| `intercept` | [`Big`, `Big`] | The lower and upper bounds of the intercept confidence interval |

0 commit comments

Comments
 (0)