Have tried a few different methods but just constantly get errors in different lines of code......been trying for hours *sigh*. Any help would be so greatly appreciated Long when rsi overbought, close trade when rsi oversold and < Vstop //@version=3 strategy("Vstop and RSI", overlay=true) //RSI Section length = input(2, "RSI Period") overSold = input(30,...
Hello, I'm sharing to you a volatility indicator I've done in the last few weeks based on ATR. There is multiple functionalities on this indicator, the first one is an overlay displaying when an asset is in an "overvolatily zone" (displayed with red cross) and when we are in an "undervolatily zone" (displayed with green cross). You can change the sensibility of...
This is just a basic RSI strategy that it easy to use and quite comprehensive so you can quickly test out an idea based on RSI. - I made it comprehensive in that you can select long, short, or both. - There is a simple moving average trend filter. You can filter for trades above, below, or don't include it at all. - The exit is based on a simple moving...
This tool is a quantitative tip for analysts who study volumes or create volume based trading strategies. Like all our projects, we start with a statistical logic to which we add coding logic. This indicator can save a huge amount of time in calculating the variation of volume between sessions . How it work The indicator calculates the difference between...
A low cost function to down sample a array. specially useful for pattern recognition algorithms.
The script shows a workaround for arrays in pine-script via drawings. There are few restrictions with them: 1. The length of the array cannot be more that amount of allowed drawings (about 40 by now) 2. Because the "array" shares the space of drawings throughout the whole script, using drawings with the "array" must be careful, with handly creating and removing of...
This is a little something I created to analyze the market. Ultimately, I wanted to create something that could encapsulate the entire market as best as possible. The idea was simple, use technical analysis to create cases that would indicate entry positions and exit positions for long positions initially. After completing that, I decided to add a few shorting...