Skip to content

Commit

Permalink
stage
Browse files Browse the repository at this point in the history
  • Loading branch information
rylorin committed Mar 13, 2024
1 parent 68a610e commit 5dc907f
Show file tree
Hide file tree
Showing 17 changed files with 1,123 additions and 868 deletions.
26 changes: 22 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
{
"jscs.enable": false,
"eslint.enable": false
"tslint.enable": false
}
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.format": "explicit",
"source.organizeImports": "explicit",
"source.sortPackageJson": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true,
"dist": true,
"build": true,
"node_modules": true
},
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.tsdk": "./node_modules/typescript/lib",
"js/ts.implicitProjectConfig.target": "ES2015"
}
16 changes: 0 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,22 +80,6 @@ SMA.calculate({period : 5, values : [1,2,3,4,5,6,7,8,9]});

[Playground with code completion](http://anandanand84.github.io/technicalindicators/ "Playground")

# Crypto Trading hub

If you like this project. You'll love my other project [crypto trading hub](https://cryptotrading-hub.com/?utm_source=github&utm_medium=readme&utm_campaign=technicalindicators "Crypto trading hub")

1. Its free
1. Realtime price charts
1. Unified trading experience across exchanges
1. Price alerts
1. Realtime crypto screening using javascript (Find coins making high and low in realtime or anything you can write using this library and javascript in realtime)
1. Trading from charts,
1. Modify orders and ability to trade and create studies using javascript.

![Home](/images/home.png)
![Screener](/images/screener.png)
![Trade](/images/trade.png)

# Available Indicators

1. [Accumulation Distribution Line (ADL)](https://tonicdev.com/anandaravindan/adl "ADL").
Expand Down
8 changes: 4 additions & 4 deletions declarations/Utils/LinkedList.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ export declare class LinkedList {
private _length;
private _current;
constructor();
readonly head: any;
readonly tail: any;
readonly current: any;
readonly length: any;
get head(): any;
get tail(): any;
get current(): any;
get length(): any;
push(data: any): void;
pop(): any;
shift(): any;
Expand Down
2 changes: 1 addition & 1 deletion declarations/momentum/KST.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ export declare class KST extends Indicator {
generator: IterableIterator<KSTOutput | undefined>;
constructor(input: KSTInput);
static calculate: typeof kst;
nextValue(price: number): KSTOutput;
nextValue(price: number): any;
}
export declare function kst(input: KSTInput): KSTOutput[];
2 changes: 1 addition & 1 deletion declarations/momentum/TRIX.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ export declare class TRIX extends Indicator {
generator: IterableIterator<number | undefined>;
constructor(input: TRIXInput);
static calculate: typeof trix;
nextValue(price: number): number;
nextValue(price: number): any;
}
export declare function trix(input: TRIXInput): number[];
2 changes: 1 addition & 1 deletion dist/browser.es6.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/browser.js

Large diffs are not rendered by default.

Loading

0 comments on commit 5dc907f

Please sign in to comment.