@rylorin/technicalindicators
Advanced tools
Comparing version 3.1.21 to 3.1.22
@@ -14,2 +14,16 @@ declare class ForceIndexInput extends IndicatorInput { | ||
declare function forceindex(input: ForceIndexInput): number[]; | ||
declare class VWAPInput extends IndicatorInput { | ||
high: number[]; | ||
low: number[]; | ||
close: number[]; | ||
volume: number[]; | ||
} | ||
declare class VWAP extends Indicator { | ||
result: number[]; | ||
generator: IterableIterator<number>; | ||
constructor(input: VWAPInput); | ||
static calculate: typeof vwap; | ||
nextValue(price: CandleData): number; | ||
} | ||
declare function vwap(input: VWAPInput): number[]; | ||
declare class VolumeProfileInput extends IndicatorInput { | ||
@@ -48,16 +62,2 @@ high: number[]; | ||
declare function averagegain(input: AvgGainInput): number[]; | ||
declare class VWAPInput extends IndicatorInput { | ||
high: number[]; | ||
low: number[]; | ||
close: number[]; | ||
volume: number[]; | ||
} | ||
declare class VWAP extends Indicator { | ||
result: number[]; | ||
generator: IterableIterator<number>; | ||
constructor(input: VWAPInput); | ||
static calculate: typeof vwap; | ||
nextValue(price: CandleData): number; | ||
} | ||
declare function vwap(input: VWAPInput): number[]; | ||
declare class AvgLossInput extends IndicatorInput { | ||
@@ -64,0 +64,0 @@ values: number[]; |
{ | ||
"name": "@rylorin/technicalindicators", | ||
"version": "3.1.21", | ||
"version": "3.1.22", | ||
"description": "Techincal Indicators written in javascript", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
<div style="display: flex;justify-content:center;" align="center"> | ||
<img src="https://img.shields.io/github/package-json/v/rylorin/technicalindicators" /> | ||
<img src="https://https://github.com/rylorin/technicalindicators/workflows/publish/badge.svg?branch=master" /> | ||
<img src="https://github.com/rylorin/technicalindicators/workflows/publish/badge.svg?branch=master" /> | ||
<img src="https://img.shields.io/badge/License-MIT-blue.svg" /> | ||
@@ -5,0 +5,0 @@ <img src="https://img.shields.io/npm/dt/@rylorin/technicalindicators.svg" /> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2372964