ASIN calculates the arc sine of a value.
tm.ta.asin(source)
import tradomate as tm @tm.strategy()def my_strategy(config: tm.TradomateConfig, data: tm.TradomateData): # Trying out Vector Trigonometric ASin asin = tm.ta.asin(data.close) # Get the last value and print last_value = asin.iloc[-1] tm.log(f"Last value of Vector Trigonometric ASin is {last_value}") # Plot the values of asin tm.plot(asin, title="Vector Trigonometric ASin", overlay=False)