The talib.SINH()
function is used to calculate the Vector Trigonometric Sinh (hyperbolic sine function).
The return value of the talib.SINH()
function is: a one-dimensional array.
array
talib.SINH(inReal)
The inReal
parameter is used to specify the K-line data.
inReal
true
{@struct/Record Record} structure arrays, numeric arrays
function main() {
var data = [-1, 0, 1]
var ret = talib.SINH(data)
Log(ret)
}
import talib
import numpy as np
def main():
data = [-1.0, 0, 1.0]
ret = talib.SINH(np.array(data))
Log(ret)
void main() {
std::vector<double> data = {-1, 0, 1};
auto ret = talib.SINH(data);
Log(ret);
}
The SINH()
function is described in the talib library documentation as: SINH(Records[Close]) = Array(outReal)