Python

Running Grid Optimization for Backtests in Python using vectorbt

vectorbt

Running Grid Optimization for Backtests in Python using vectorbt

After running backtests, many quants want to know the best parameters for their strategies. For that, you can run one of the optimization algorithms that will find the best combination of parameters to give you the best metrics you want to optimize. It’s a pretty helpful feature, and many quants use it. However, you must Running Grid Optimization for Backtests in Python using vectorbt Read More →

Implementing Pivot Reversal Strategy in Python with vectorbt

The pivot reversal strategy is a popular trading strategy for crypto. It is based on the principle of buying or selling when the price of an asset hits a certain level, signaling a possible reversal in its trend. This strategy can be used to capitalize on short-term price movements in crypto markets. So I decided Implementing Pivot Reversal Strategy in Python with vectorbt Read More →

Backtesting intraday stock strategies in Python with vectorbt

Creating trading bots these days on intraday data become more and more popular days. For simple backtesting trades usually go to Pine Script. But with libraries like vectorbt backtesting in Python become quite simple. Also, not many people know that you can get intraday data for stocks from Yahoo Finance for free. So in summary Backtesting intraday stock strategies in Python with vectorbt Read More →