ts_random_walk: Random Walk Function

View source: R/ts_random_walk.R

ts_random_walkR Documentation

Random Walk Function

Description

This function takes in four arguments and returns a tibble of random walks.

Usage

ts_random_walk(
  .mean = 0,
  .sd = 0.1,
  .num_walks = 100,
  .periods = 100,
  .initial_value = 1000
)

Arguments

.mean

The desired mean of the random walks

.sd

The standard deviation of the random walks

.num_walks

The number of random walks you want generated

.periods

The length of the random walk(s) you want generated

.initial_value

The initial value where the random walks should start

Details

Monte Carlo simulations were first formally designed in the 1940’s while developing nuclear weapons, and since have been heavily used in various fields to use randomness solve problems that are potentially deterministic in nature. In finance, Monte Carlo simulations can be a useful tool to give a sense of how assets with certain characteristics might behave in the future. While there are more complex and sophisticated financial forecasting methods such as ARIMA (Auto-Regressive Integrated Moving Average) and GARCH (Generalized Auto-Regressive Conditional Heteroskedasticity) which attempt to model not only the randomness but underlying macro factors such as seasonality and volatility clustering, Monte Carlo random walks work surprisingly well in illustrating market volatility as long as the results are not taken too seriously.

Value

A tibble

Author(s)

Steven P. Sanderson II, MPH

See Also

Other Data Generator: tidy_fft(), ts_brownian_motion_augment(), ts_brownian_motion(), ts_geometric_brownian_motion_augment(), ts_geometric_brownian_motion()

Examples

ts_random_walk(
.mean = 0,
.sd = 1,
.num_walks = 25,
.periods = 180,
.initial_value = 6
)


healthyR.ts documentation built on Nov. 15, 2023, 9:07 a.m.