A Python toolkit for creating and testing trading strategies, especially with reinforcement learning.
Inspired by OpenAI Gym, TradingGym provides an environment for developing and backtesting reinforcement learning agents or rule-based trading algorithms. Users can create trading environments using `trading_env.make()` with various market data parameters like `obs_data_len`, `fee`, and `max_position`. It supports both tick and OHLC data formats, allowing users to simulate market interactions via `env.step()` and visualize results with `env.render()`.
A Python toolkit for creating and testing trading strategies, especially with reinforcement learning.
Anyone looking to experiment with algorithmic trading strategies or train RL agents in a simulated market environment would find this useful.