This project is designed to compare the performance difference between calling C functions from Python via pybind11 and ctypes. The test scenario focuses on passing strings in and returning strings ...
Quant Trading Strategies/ ├── cpp/ # C++ source files (pybind11 modules) │ └── moving_average.cpp ├── python/ # Python scripts │ ├── get_yfinance_data.py │ └── rolling_average.py ├── lib/ # Compiled ...