AnalysisService

A service class that provides various analysis methods for financial data.

This class includes methods to calculate the Simple Moving Average (SMA), price volatility, margin, and whether to buy based on certain criteria.

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
fun calculateMargin(sma: Double, latestPrice: Double): Double

Calculates the margin between the Simple Moving Average (SMA) and the latest price.

Link copied to clipboard
fun calculateSMA(prices: List<Int>, period: Int): Double

Calculates the Simple Moving Average (SMA) for a list of prices over a specified period.

Link copied to clipboard

Calculates the price volatility for a list of prices.

Link copied to clipboard
fun shouldBuy(latestPrice: Double, sma: Double, margin: Double, priceVolatility: Double, buyThreshold: Double): Boolean

Determines whether to buy based on the latest price, SMA, margin, price volatility, and a buy threshold.