From ceb69d696b895867d482dbd4f91247d19ee75b16 Mon Sep 17 00:00:00 2001 From: David Brazda Date: Mon, 26 Aug 2024 19:59:00 +0200 Subject: [PATCH 1/3] Update README.md (#242) --- README.md | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index da945f7..d74537c 100644 --- a/README.md +++ b/README.md @@ -4,26 +4,21 @@ Custom-built algorithmic trading platform for research, backtesting and live trading. Trading engine capable of processing tick data, providing custom aggregation, managing trades, and supporting backtesting in a highly accurate and efficient manner. ## Key Features -- **Trading Engine**: At the core of the platform is a trading engine that processes tick data in real time. This engine is responsible for aggregating data and managing the execution of trades, ensuring precision and speed in trade placement and execution. +- **Trading Engine**: Processes tick data in real time, aggregating data and managing trade execution. -- **High-Fidelity Backtesting Environment**: ability to backtest strategies with 1:1 precision - meaning a tick-by-tick backtesting. This level of precision in backtesting, down to millisecond accuracy, mirrors live trading environments and is vital for developing and testing high-frequency trading strategies. +- **Backtesting**: tick-by tick backtesting, down to millisecond accuracy, mirrors live trading environments and is vital for developing and testing high(er)-frequency trading strategies. -- **Custom Data Aggregation:** The platform includes a data aggregator that allows for custom aggregation rules. This flexibility supports a variety of data analysis approaches, including non-time based bars and other unique criteria. +- **Configuration**: robust configuration via TOML + +- **Frontend**: Frontend to support research to backtesting to paper trading workflow, including lightweight charts. + +- **Custom Data Aggregation:** Custom time based, volume based, dollar based and renko bars aggregators based on tick-by-tick data. - **Indicators** Contains inbuild [tulipy](https://tulipindicators.org/list) [ta-lib](https://ta-lib.github.io/ta-lib-python/) and templates for custom build multioutputs stateful indicators. -- **Machine Learning Integration:** Recently, the platform has expanded to incorporate machine learning capabilities. This includes modules for both training and inference, supporting the complete ML lifecycle. These ML models can be utilized within trading strategies for classification and exploiting statistical advantages. +- **Machine Learning Integration:** Includes modules for both training and inference, supporting the complete ML lifecycle. -**Technology Stack** -**Backend and API:** The backbone of the platform is built with Python, utilizing libraries such as FastAPI, NumPy, Keras, and JAX, ensuring high performance and scalability. -**Frontend:** The client-side is developed with Vanilla JavaScript and jQuery, employing LightweightCharts for charting purposes. Additional modules enhance the platform's functionality. The frontend is slated for a future refactoring to modern frameworks like Vue.js and Vuetify for a more robust user interface. - -While the platform is fully functional and growing, ongoing development is planned, particularly in the realm of frontend enhancements and further integration of advanced machine learning techniques. - -**Contributions** -Contributions to this project are welcome. Whether it's improving the frontend, enhancing the backend capabilities, or experimenting with new trading strategies and machine learning models, your input can help take this platform to the next level. - -This repository represents a sophisticated and evolving tool for algorithmic traders, offering precision, speed, and a level of customization that is unparalleled in open-source systems. Join us in shaping the future of algorithmic trading. +**Gui examples**

Main screen with entry/exit points and stoploss lines
@@ -50,6 +45,8 @@ This repository represents a sophisticated and evolving tool for algorithmic tra Strategy analytical tools

+**Backend and API:** The backbone of the platform is built with Python, utilizing libraries such as FastAPI, NumPy, Keras, and JAX, ensuring high performance and scalability. +**Frontend:** The client-side is developed with Vanilla JavaScript and jQuery, employing LightweightCharts for charting purposes. Additional modules enhance the platform's functionality. The frontend is slated for a future refactoring to modern frameworks like Vue.js and Vuetify for a more robust user interface. # Installation Instructions This document outlines the steps for installing and setting up the necessary environment for the application. These instructions are applicable for both Windows and Linux operating systems. Please follow the steps carefully to ensure a smooth setup. From 9d1ef8373367ab699da010cfa3163550350e6857 Mon Sep 17 00:00:00 2001 From: David Brazda Date: Tue, 27 Aug 2024 14:12:05 +0200 Subject: [PATCH 2/3] Update README.md (#245) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d74537c..b9f9e78 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,8 @@ Custom-built algorithmic trading platform for research, backtesting and live tra **Backend and API:** The backbone of the platform is built with Python, utilizing libraries such as FastAPI, NumPy, Keras, and JAX, ensuring high performance and scalability. **Frontend:** The client-side is developed with Vanilla JavaScript and jQuery, employing LightweightCharts for charting purposes. Additional modules enhance the platform's functionality. The frontend is slated for a future refactoring to modern frameworks like Vue.js and Vuetify for a more robust user interface. +**Documentation** Public docs in in progress. Some can be found on [knowledge base](trading.mujdenik.eu) but first please request access. Some analysis documents can be found on [shared google doc folder](https://drive.google.com/drive/folders/1WmYG8oDGXO-lVTLVs9knAmMTmQL4dZt6?usp=drive_link). + # Installation Instructions This document outlines the steps for installing and setting up the necessary environment for the application. These instructions are applicable for both Windows and Linux operating systems. Please follow the steps carefully to ensure a smooth setup. From 773f5a3ef8645667d1eeab3b5d30cb91b59768aa Mon Sep 17 00:00:00 2001 From: David Brazda Date: Sat, 31 Aug 2024 06:09:17 +0200 Subject: [PATCH 3/3] Update README.md (#246) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9f9e78..7d9382b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# V2TRADING - Advanced Algorithmic Trading Platform +# V2TRADING - Algorithmic Trading Platform with Frontend ## Overview Custom-built algorithmic trading platform for research, backtesting and live trading. Trading engine capable of processing tick data, providing custom aggregation, managing trades, and supporting backtesting in a highly accurate and efficient manner.