Vector Trigonometric Sin
SIN calculates the sine of a value.
Method
tm.ta.sin(source)
Inputs
Parameter | Argument type | Description | Default Value |
---|---|---|---|
source | pd.Series | Input data series | - |
Outputs
Output | Type |
---|---|
sin | np.ndarray |
Example usage
import tradomate as tm
@tm.strategy()def my_strategy(config: tm.TradomateConfig, data: tm.TradomateData):
# Trying out Vector Trigonometric Sin sin = tm.ta.sin(data.close)
# Get the last value and print last_value = sin.iloc[-1] tm.log(f"Last value of Vector Trigonometric Sin is {last_value}")
# Plot the values of sin tm.plot(sin, title="Vector Trigonometric Sin", overlay=False)