本文整理汇总了Java中com.tictactec.ta.lib.meta.annotation.InputParameterType类的典型用法代码示例。如果您正苦于以下问题:Java InputParameterType类的具体用法?Java InputParameterType怎么用?Java InputParameterType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
InputParameterType类属于com.tictactec.ta.lib.meta.annotation包,在下文中一共展示了InputParameterType类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ad
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "AD",
group = "Volume Indicators",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode ad(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inPriceHLCV",
flags = 30,
type = InputParameterType.TA_Input_Price
)
double inHigh [],
double inLow [],
double inClose [],
double inVolume [],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.ad (
startIdx,
endIdx,
inHigh ,
inLow ,
inClose ,
inVolume ,
outBegIdx,
outNBElement,
outReal
); }
示例2: tanh
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "TANH",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode tanh(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.tanh (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例3: asin
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "ASIN",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode asin(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.asin (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例4: typPrice
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "TYPPRICE",
group = "Price Transform",
flags = 16777216,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode typPrice(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inPriceHLC",
flags = 14,
type = InputParameterType.TA_Input_Price
)
double inHigh [],
double inLow [],
double inClose [],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.typPrice (
startIdx,
endIdx,
inHigh ,
inLow ,
inClose ,
outBegIdx,
outNBElement,
outReal
); }
示例5: sin
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "SIN",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode sin(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.sin (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例6: tan
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "TAN",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode tan(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.tan (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例7: ceil
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "CEIL",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode ceil(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.ceil (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例8: cos
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "COS",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode cos(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.cos (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例9: cosh
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "COSH",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode cosh(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.cosh (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例10: htDcPhase
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "HT_DCPHASE",
group = "Cycle Indicators",
flags = 134217728,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode htDcPhase(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.htDcPhase (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例11: trueRange
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "TRANGE",
group = "Volatility Indicators",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode trueRange(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inPriceHLC",
flags = 14,
type = InputParameterType.TA_Input_Price
)
double inHigh [],
double inLow [],
double inClose [],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.trueRange (
startIdx,
endIdx,
inHigh ,
inLow ,
inClose ,
outBegIdx,
outNBElement,
outReal
); }
示例12: htTrendline
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "HT_TRENDLINE",
group = "Overlap Studies",
flags = 150994944,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode htTrendline(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.htTrendline (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例13: htTrendMode
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "HT_TRENDMODE",
group = "Cycle Indicators",
flags = 134217728,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode htTrendMode(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outInteger",
flags = 1,
type = OutputParameterType.TA_Output_Integer
)
int outInteger[]
) {
return super.htTrendMode (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outInteger
); }
示例14: ln
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "LN",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode ln(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inReal",
flags = 0,
type = InputParameterType.TA_Input_Real
)
double inReal[],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.ln (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例15: wclPrice
import com.tictactec.ta.lib.meta.annotation.InputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "WCLPRICE",
group = "Price Transform",
flags = 16777216,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode wclPrice(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inPriceHLC",
flags = 14,
type = InputParameterType.TA_Input_Price
)
double inHigh [],
double inLow [],
double inClose [],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.wclPrice (
startIdx,
endIdx,
inHigh ,
inLow ,
inClose ,
outBegIdx,
outNBElement,
outReal
); }