ta-react-financial-charts 2.0.16

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/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ The MIT License (MIT)
2
+ https://github.com/reactivemarkets/react-financial-charts
3
+
4
+ Copyright (c) 2015-2018 Ragu Ramaswamy
5
+ Copyright (c) 2016 Julien Renaux
6
+ Copyright (c) 2019 Reactive Markets
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in
16
+ all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
+ THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,56 @@
1
+ # React Financial Charts
2
+
3
+ Charts dedicated to finance.
4
+
5
+ The aim with this project is create financial charts that work out of the box.
6
+
7
+ ## Features
8
+
9
+ - integrates multiple chart types
10
+ - over 60 technical indicators and overlays
11
+ - drawing objects
12
+
13
+ ### Chart types
14
+
15
+ - Scatter
16
+ - Area
17
+ - Line
18
+ - Candlestick
19
+ - OHLC
20
+ - HeikenAshi
21
+ - Renko
22
+ - Kagi
23
+ - Point & Figure
24
+
25
+ ### Indicators
26
+
27
+ - EMA, SMA, WMA, TMA
28
+ - Bollinger band
29
+ - SAR
30
+ - MACD
31
+ - RSI
32
+ - ATR
33
+ - Stochastic (fast, slow, full)
34
+ - ForceIndex
35
+ - ElderRay
36
+ - Elder Impulse
37
+
38
+ ### Interactive Indicators
39
+
40
+ - Trendline
41
+ - Fibonacci Retracements
42
+ - Gann Fan
43
+ - Channel
44
+ - Linear regression channel
45
+
46
+ ---
47
+
48
+ ## Installation
49
+
50
+ ```sh
51
+ npm install react-financial-charts
52
+ ```
53
+
54
+ ## LICENSE
55
+
56
+ [MIT](./LICENSE)
package/lib/index.d.ts ADDED
@@ -0,0 +1,10 @@
1
+ export * from "@tradingaction/annotations";
2
+ export * from "@tradingaction/axes";
3
+ export * from "@tradingaction/coordinates";
4
+ export * from "@tradingaction/core";
5
+ export * from "@tradingaction/indicators";
6
+ export * from "@tradingaction/interactive";
7
+ export * from "@tradingaction/scales";
8
+ export * from "@tradingaction/series";
9
+ export * from "@tradingaction/tooltip";
10
+ export * from "@tradingaction/utils";
package/lib/index.js ADDED
@@ -0,0 +1,11 @@
1
+ export * from "@tradingaction/annotations";
2
+ export * from "@tradingaction/axes";
3
+ export * from "@tradingaction/coordinates";
4
+ export * from "@tradingaction/core";
5
+ export * from "@tradingaction/indicators";
6
+ export * from "@tradingaction/interactive";
7
+ export * from "@tradingaction/scales";
8
+ export * from "@tradingaction/series";
9
+ export * from "@tradingaction/tooltip";
10
+ export * from "@tradingaction/utils";
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,qBAAqB,CAAC;AACpC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC"}
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "ta-react-financial-charts",
3
+ "version": "2.0.16",
4
+ "description": "React charts specific to finance.",
5
+ "main": "./lib/index.js",
6
+ "typings": "./lib/index.d.ts",
7
+ "files": [
8
+ "lib",
9
+ "src"
10
+ ],
11
+ "sideEffects": false,
12
+ "author": "reactivemarkets",
13
+ "keywords": [
14
+ "charts",
15
+ "charting",
16
+ "stockcharts",
17
+ "finance",
18
+ "financial",
19
+ "finance-chart",
20
+ "react",
21
+ "d3"
22
+ ],
23
+ "license": "MIT",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/reactivemarkets/react-financial-charts.git"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/reactivemarkets/react-financial-charts/issues"
30
+ },
31
+ "scripts": {
32
+ "build": "npm run clean && npm run compile",
33
+ "clean": "rimraf lib",
34
+ "compile": "tsc -p tsconfig.json"
35
+ },
36
+ "dependencies": {
37
+ "@tradingaction/annotations": "^2.0.15",
38
+ "@tradingaction/axes": "^2.0.15",
39
+ "@tradingaction/coordinates": "^2.0.15",
40
+ "@tradingaction/core": "^2.0.15",
41
+ "@tradingaction/indicators": "^2.0.15",
42
+ "@tradingaction/interactive": "^2.0.15",
43
+ "@tradingaction/scales": "^2.0.15",
44
+ "@tradingaction/series": "^2.0.15",
45
+ "@tradingaction/tooltip": "^2.0.15",
46
+ "@tradingaction/utils": "^2.0.15"
47
+ },
48
+ "peerDependencies": {
49
+ "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
50
+ "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
51
+ },
52
+ "gitHead": "e12c129340de3cfc35167df7f195a8b316c879a6"
53
+ }
package/src/index.ts ADDED
@@ -0,0 +1,10 @@
1
+ export * from "@tradingaction/annotations";
2
+ export * from "@tradingaction/axes";
3
+ export * from "@tradingaction/coordinates";
4
+ export * from "@tradingaction/core";
5
+ export * from "@tradingaction/indicators";
6
+ export * from "@tradingaction/interactive";
7
+ export * from "@tradingaction/scales";
8
+ export * from "@tradingaction/series";
9
+ export * from "@tradingaction/tooltip";
10
+ export * from "@tradingaction/utils";