Preparing search index...
The search index is not available
trading-signals
trading-signals
IndicatorSeries
Interface IndicatorSeries<Result, Input>
Tracks results of an indicator over time and memorizes the highest & lowest result.
interface
IndicatorSeries
<
Result
,
Input
>
{
highest
?:
Result
;
isStable
:
boolean
;
lowest
?:
Result
;
getResult
(
)
:
Result
;
update
(
input
)
:
void
|
Result
;
}
Type Parameters
Result
=
Big
Input
=
BigSource
Hierarchy (
view full
)
Indicator
<
Result
,
Input
>
IndicatorSeries
Implemented by
BigIndicatorSeries
NumberIndicatorSeries
Index
Properties
highest?
is
Stable
lowest?
Methods
get
Result
update
Properties
Optional
highest
highest
?:
Result
is
Stable
is
Stable
:
boolean
Optional
lowest
lowest
?:
Result
Methods
get
Result
get
Result
(
)
:
Result
Returns
Result
update
update
(
input
)
:
void
|
Result
Parameters
input
:
Input
Returns
void
|
Result
Settings
Member Visibility
Inherited
Theme
OS
Light
Dark
On This Page
highest
is
Stable
lowest
get
Result
update
trading-signals
Loading...
Tracks results of an indicator over time and memorizes the highest & lowest result.