public class CamarillaPivot2Indicator extends AbstractPivotIndicator
context, showHistoricalLevels, showLabels
Constructor and Description |
---|
CamarillaPivot2Indicator() |
Modifier and Type | Method and Description |
---|---|
IndicatorResult |
calculate(int startIndex,
int endIndex)
Calculates values of the indicator from startIndex to endIndex of input parameter and places them in output parameters
|
IndicatorInfo |
getIndicatorInfo()
Returns object that describes indicator, how many inputs, outputs it has, where it should be shown etc
|
InputParameterInfo |
getInputParameterInfo(int index)
Returns object that describes one of the inputs
|
int |
getLookback()
Returns number of elements needed to calculate value of the first element.
|
int |
getLookforward()
Returns number of elements after last element needed to calculate value of the last element.
|
OptInputParameterInfo |
getOptInputParameterInfo(int index)
Returns object that describes optional input
|
OutputParameterInfo |
getOutputParameterInfo(int index)
Returns object that describes output
|
void |
onStart(IIndicatorContext context)
Called on indicator initialization
|
void |
setInputParameter(int index,
java.lang.Object array)
Sets input parameter.
|
void |
setOptInputParameter(int index,
java.lang.Object value)
Sets optional input parameter.
|
void |
setOutputParameter(int index,
java.lang.Object array)
Sets output parameter.
|
createOutputParameterInfo, drawOutput
public void onStart(IIndicatorContext context)
IIndicator
onStart
in interface IIndicator
onStart
in class AbstractPivotIndicator
context
- allows access to system functionalitypublic IndicatorResult calculate(int startIndex, int endIndex)
IIndicator
startIndex
- index of the first element in input parameters that needs corresponding indicator value. That doesn't mean that values
before startIndex will not be read, they will be if lookback is more than 0. That also doesn't mean that value for startIndex will be
calculated, it will be not if startIndex < lookback. IndicatorResult.getFirstValueIndex()
returns index of the first element that
has corresponding calculated value in output array(s)endIndex
- index of the last element in input parameters that needs corresponding indicator valuepublic IndicatorInfo getIndicatorInfo()
IIndicator
public InputParameterInfo getInputParameterInfo(int index)
IIndicator
index
- index of the inputpublic OptInputParameterInfo getOptInputParameterInfo(int index)
IIndicator
index
- index of the optional inputpublic OutputParameterInfo getOutputParameterInfo(int index)
IIndicator
index
- index of the outputpublic void setInputParameter(int index, java.lang.Object array)
IIndicator
index
- index of the parameterarray
- array of the doubles, ints or prices represented as double[][]public void setOptInputParameter(int index, java.lang.Object value)
IIndicator
index
- index of the parametervalue
- int or double valuepublic void setOutputParameter(int index, java.lang.Object array)
IIndicator
IIndicator.calculate(int, int)
callindex
- index of the parameterarray
- array of doubles or ints enough to hold values from startIndex to endIndexpublic int getLookback()
IIndicator
public int getLookforward()
IIndicator
Copyright © 2024. All rights reserved.