TradingView

Automating long/short TradingView strategies with only 1 alert

QuantNomad

Automating long/short TradingView strategies with only 1 alert

Using new alerts on the strategies in Tradingview you can do pretty interesting stuff in PineScript. In this post, I will show you how you can automate pretty complicated strategies in TradingView using only 1 alerts instead of at least 4 alerts you need using usual alerts. I’m using 3commas to automate strategies, but you Automating long/short TradingView strategies with only 1 alert Read More →

How to fix “cannot use a mutable variable as an argument of the security function” error

Here is an example of pivot points calculation in PineScript: This works fine in PineScript: But If you’ll try to compute the same pivots on Higher Time Frame with security function, daily in this case: That won’t work and you will see the following error in console: ” line 12: Cannot use a mutable variable How to fix “cannot use a mutable variable as an argument of the security function” error Read More →