本文整理汇总了Java中com.tictactec.ta.lib.meta.annotation.OutputParameterType类的典型用法代码示例。如果您正苦于以下问题:Java OutputParameterType类的具体用法?Java OutputParameterType怎么用?Java OutputParameterType使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
OutputParameterType类属于com.tictactec.ta.lib.meta.annotation包,在下文中一共展示了OutputParameterType类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ad
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的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: sinh
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "SINH",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode sinh(
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.sinh (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例3: asin
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的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: avgPrice
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "AVGPRICE",
group = "Price Transform",
flags = 16777216,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode avgPrice(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inPriceOHLC",
flags = 15,
type = InputParameterType.TA_Input_Price
)
double inOpen [],
double inHigh [],
double inLow [],
double inClose [],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.avgPrice (
startIdx,
endIdx,
inOpen ,
inHigh ,
inLow ,
inClose ,
outBegIdx,
outNBElement,
outReal
); }
示例5: medPrice
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "MEDPRICE",
group = "Price Transform",
flags = 16777216,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode medPrice(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inPriceHL",
flags = 6,
type = InputParameterType.TA_Input_Price
)
double inHigh [],
double inLow [],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.medPrice (
startIdx,
endIdx,
inHigh ,
inLow ,
outBegIdx,
outNBElement,
outReal
); }
示例6: bop
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "BOP",
group = "Momentum Indicators",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode bop(
int startIdx,
int endIdx,
@InputParameterInfo(
paramName = "inPriceOHLC",
flags = 15,
type = InputParameterType.TA_Input_Price
)
double inOpen [],
double inHigh [],
double inLow [],
double inClose [],
MInteger outBegIdx,
MInteger outNBElement,
@OutputParameterInfo(
paramName = "outReal",
flags = 1,
type = OutputParameterType.TA_Output_Real
)
double outReal[]
) {
return super.bop (
startIdx,
endIdx,
inOpen ,
inHigh ,
inLow ,
inClose ,
outBegIdx,
outNBElement,
outReal
); }
示例7: sqrt
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "SQRT",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode sqrt(
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.sqrt (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例8: sin
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的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
); }
示例9: ceil
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的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
); }
示例10: exp
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "EXP",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode exp(
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.exp (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例11: floor
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "FLOOR",
group = "Math Transform",
flags = 0,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode floor(
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.floor (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例12: htDcPeriod
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的package包/类
@FuncInfo(
name = "HT_DCPERIOD",
group = "Cycle Indicators",
flags = 134217728,
nbInput = 1,
nbOptInput = 0,
nbOutput = 1
)
public RetCode htDcPeriod(
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.htDcPeriod (
startIdx,
endIdx,
inReal,
outBegIdx,
outNBElement,
outReal
); }
示例13: htDcPhase
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的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
); }
示例14: htTrendMode
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的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
); }
示例15: tanh
import com.tictactec.ta.lib.meta.annotation.OutputParameterType; //导入依赖的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
); }