Documentation Index
Fetch the complete documentation index at: https://takeprofit.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Utility functions for simple calculations in Indie indicators.
Functions
cross()
function
Overloads
Checks if two series just have crossed each other.
src1
indie.Series[float]
requiredFirst series to make crossing check.
src2
indie.Series[float]
requiredSecond series to make crossing check.
Checks if two series just have crossed each other.
src
indie.Series[float]
requiredSeries to make crossing check.
Constant level to make crossing check.
cross_over()
function
Overloads
Checks if the first series just have crossed over the second one.
src1
indie.Series[float]
requiredFirst series to make crossing check.
src2
indie.Series[float]
requiredSecond series to make crossing check.
Checks if the first series just have crossed over the second one.
src
indie.Series[float]
requiredSeries to make crossing check.
Constant level to make crossing check.
cross_under()
function
Overloads
Checks if the first series just have crossed under the second one.
src1
indie.Series[float]
requiredFirst series to make crossing check.
src2
indie.Series[float]
requiredSecond series to make crossing check.
Checks if the first series just have crossed under the second one.
src
indie.Series[float]
requiredSeries to make crossing check.
Constant level to make crossing check.
divide()
function
Overloads
divide
(numerator, denominator, default) -> float
Safely divides two numbers, returning a default value if the denominator is near zero.