The Quant Nomad has over 6 years’ experience in the quantitative trading industry (15+ years in programming).
He has helped more than 200 traders and companies create/optimize their algorithmic trading models.
Adding a dynamic filter to Pine Script strategies.
No Comments

Quite often your strategies in TradingView will be complicated and will have multiple conditions at once. You might want to check if certain conditions work or not for your strategy. It’s a good idea to create a checkbox in your parameter that switch on/off certain filters. In this article, I’ll show you a simple example Adding a dynamic filter to Pine Script strategies. Read More →

Implementing UT Bot Strategy in Python with vectorbt
14 Comments

UT Bot Strategy is one of the most popular scripts I published on TradingView. I was asked many time if I have a version of this strategy in Python. Recently I started using vectorbt and I decided finally to implement this strategy in Python. First let’s import all the libraries we’ll use in this code: Implementing UT Bot Strategy in Python with vectorbt Read More →

Running simple and fast backtests in Python with vectorbt
No Comments

vectorbt is the new Python Backtesting framework I’m using these days. I really like it so I decided to share an example of the simplest strategy built in the vecotrbt from scratch, so you can understand why I like it. This library is developed mostly in Pandas and Numpy so it should be really fast Running simple and fast backtests in Python with vectorbt Read More →

The `when` parameter will be deprecated in future Pine versions. How to fix it?
2 Comments

Just recently you might start to see the following warnings in Tradingview : line 12: The `when` parameter will be deprecated in future Pine versions. We recommend using `if` or `switch` conditional blocks instead This is happening when you’re using “when” parameter in any strategy.* functions. For example, following code will produce 2 warnings for The `when` parameter will be deprecated in future Pine versions. How to fix it? Read More →

Pine Script Course Update and Sale!
No Comments

My course receive a first update! Also you can enjoy a 25% discount in the next few days!

A clever way of exporting data with alerts from TradingView
No Comments

TradingView is not very friendly when it’s coming to exporting/importing custom data. But still, there are ways you can use to do that to some extent. In this article, I’ll show you an export method that will allow you to export custom-calculated data with email alerts. In this article, I’ll work with a simple SMA A clever way of exporting data with alerts from TradingView Read More →