Source code for tensortrade.stochastic.processes.fbm

# Copyright 2020 The TensorTrade Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License

import pandas as pd

from stochastic.processes.noise import GaussianNoise
from stochastic.processes.continuous import FractionalBrownianMotion

from tensortrade.stochastic.utils import scale_times_to_generate


[docs]def fbm(base_price: int = 1, base_volume: int = 1, start_date: str = '2010-01-01', start_date_format: str = '%Y-%m-%d', times_to_generate: int = 1000, hurst: float = 0.61, time_frame: str = '1h') -> 'pd.DataFrame': """Generates price data from the FBM process. Parameters ---------- base_price : int, default 1 The base price to use for price generation. base_volume : int, default 1 The base volume to use for volume generation. start_date : str, default '2010-01-01' The start date of the generated data start_date_format : str, default '%Y-%m-%d' The format for the start date of the generated data. times_to_generate : int, default 1000 The number of bars to make. hurst : float, default 0.61 The hurst parameter for the FBM process. time_frame : str, default '1h' The time frame. Returns ------- `pd.DataFrame` The generated data frame containing the OHLCV bars. References ---------- [1] https://en.wikipedia.org/wiki/Fractional_Brownian_motion """ times_to_generate = scale_times_to_generate(times_to_generate, time_frame) price_fbm = FractionalBrownianMotion(t=times_to_generate, hurst=hurst) price_volatility = price_fbm.sample(times_to_generate - 1) prices = price_volatility + base_price volume_gen = GaussianNoise(times_to_generate) volume_volatility = volume_gen.sample(times_to_generate) volumes = volume_volatility * price_volatility + base_volume start_date = pd.to_datetime(start_date, format=start_date_format) price_frame = pd.DataFrame([], columns=['date', 'price'], dtype=float) volume_frame = pd.DataFrame([], columns=['date', 'volume'], dtype=float) price_frame['date'] = pd.date_range(start=start_date, periods=times_to_generate, freq="1min") price_frame['price'] = abs(prices) volume_frame['date'] = price_frame['date'].copy() volume_frame['volume'] = abs(volumes) price_frame.set_index('date') price_frame.index = pd.to_datetime(price_frame.index, unit='m', origin=start_date) volume_frame.set_index('date') volume_frame.index = pd.to_datetime(volume_frame.index, unit='m', origin=start_date) data_frame = price_frame['price'].resample(time_frame).ohlc() data_frame['volume'] = volume_frame['volume'].resample(time_frame).sum() return data_frame