Skip to main content

A modular library for synthetic time series generation.

Project description

tsg – Modular Time Series Generator Library

tsg is a lightweight Python library for generating synthetic time series data using modular and composable generators.
It is designed for research, simulation, and testing of sequential decision-making algorithms, especially in finance and machine learning.


🚀 Features

  • 📈 Core generators: linear trend, periodic trend, constant value
  • 🎲 Noise wrappers: add Gaussian noise or build your own modifiers
  • 🔁 Stateful generators with reset() support
  • 🧱 Easy to extend with your own generator or modifier classes

📦 Installation

Install through GitHub from any location:

pip install git+https://github.com/MSCA-DN-Digital-Finance/tsg.git

Install through PyPi from any location:

pip install tsg-lib

🛠️ Example Usage

Here’s how to generate a noisy linear trend time series using tsg:

from tsg.generators import LinearTrendGenerator
from tsg.modifiers import GaussianNoise

# Create a linear trend generator (increasing by +1 each step)
base_generator = LinearTrendGenerator(start_value=100, up=True)

# Wrap it with Gaussian noise (mean=0, std=1)
noisy_generator = GaussianNoise(base_generator, mu=0.0, sigma=1.0)

# Generate a few data points
values = []
for _ in range(10):
    value = noisy_generator.generate_value(None)
    values.append(value)

print(values)

🧠 API Overview

Core Generators (tsg.generators)

Class Description Parameters
LinearTrendGenerator Linearly increases or decreases the value at each step start_value, slope
ConstantGenerator Returns a fixed value (e.g., simulates cash) None (uses last_value passed to generate_value)
PeriodicTrendGenerator Generates a sinusoidal time series with set amplitude and frequency start_value, amplitude, frequency
RandomWalkGenerator Simulates Brownian motion: a drifting random walk with optional noise start_value, mu, sigma
OrnsteinUhlenbeckGenerator Simulates mean-reverting noise with drift toward a long-term mean mu, theta, sigma, dt, start_value

Modifier Wrappers (tsg.modifiers)

Class Description
GaussianNoise Adds Gaussian noise (N(mu, sigma)) to any base generator

All components implement the BaseGenerator interface with:

  • generate_value(last_value) – returns the next value in the sequence
  • reset() – resets any internal state (optional for stateless generators)

Acknowledgments

Funded by the European Union. Views and opinions expressed are however those of the author(s) only and do not necessarily reflect those of the European Union or European Research Executive Agency (REA). Neither the European Union nor the granting authority can be held responsible for them.

EU Logo

License

MIT — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tsg_lib-0.1.4.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tsg_lib-0.1.4-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file tsg_lib-0.1.4.tar.gz.

File metadata

  • Download URL: tsg_lib-0.1.4.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for tsg_lib-0.1.4.tar.gz
Algorithm Hash digest
SHA256 8ecd2a0735ceb38c8cf36dc7352a034ecfc03a43f60033ce6e1da4fd850977e4
MD5 f930e03fca842d26b292e5ddab31ba2b
BLAKE2b-256 a7af419c985d902f2e055e097bc7f6a51c6905beaf50e15900eee3b5083b6ba6

See more details on using hashes here.

File details

Details for the file tsg_lib-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: tsg_lib-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 6.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for tsg_lib-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 54a75b5636f77146a288714913ec5a7d548d816a05d02c692fc2fffc382b946b
MD5 563550d041eb6c4c36f102aed052fe91
BLAKE2b-256 fee08f65d93ceeeccf94adf960719e67cca5bb6ae53c2850356e7639fd8c9207

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page