This indicator consist of tow RSI length that user can customize it. like length, overbought, oversold. like length, overbought, oversold. also it has one moving average where the user can select from different types of moving averages, price sources, lookback periods and resolutions
Hi all! This script allows an alert option for conditions when the price increase 10% from the SMA and when price decrease 10% from the SMA. The SMA length defaults to 20, but can be set to any length of your preference at “length” in the inputs tab of the script settings. Value that increase and decrease 10% from SMA is able to visualize with a line but it can...
Mad Move allows to highlight big candles on graph and trigger alerts when a big candle appears. it allows you to react quickly on your trades if necessary. Only one parameter: "Move Size: price variation amount (default: 30) Time frame is decisive. Logically, the smaller it is, the more the relevance increases To create an alert, you must activate the script on...
Alerts on strategies were introduced just recently in TradingView. These alerts have an alert_message placeholder which allows you to compose in PineScript very complex alerts and insert quite a lot of information in them. This is just very simple example of how they can look like.
Simply explained, this script, when modified to each specific use case, can allow you to specify that alert conditions are only checked every X seconds (AKA Intervals - as fast as every single second) and that alerts can not occur quicker than the user-specified delay (in seconds) Explained: - This will work on any resolution, but for the best results/fastest...
This was a follower suggested script. This script shows an example of how to create a custom alert message using the alertcondition() function in pine. Features: - Well documented code with links to documentation for specific functions. - Two alertconditions in a different order than the plots they reference to show the importance of plot IDs. In order to...
How to consolidate multiple alerts into a single alertcondition(). The solution consists of two parts: 1 - consolidate the alert conditions 2 - consolidate the alert types used in the alert message Part two is harder to accomplish because the message to display when the alert fires must be const string. However, we can use numbers. The structure: ▪ 1 and...