█ OVERVIEW This indicator creates a dynamic, scrolling display of multiple securities' latest prices and daily changes, similar to the ticker tapes on financial news channels and the Ticker Tape Widget . It shows realtime market information for a user-specified list of symbols along the bottom of the main chart pane. █ CONCEPTS Ticker tape ...
Library "TimeframeComparison" Timeframe comparison for higher and lower timeframe █ OVERVIEW This library is used to compare higher / lower timeframe by using timeframe.multiplier. minMult() timeframe multiplier in minutes Returns: float value
This script serves as a successor to a previous script I wrote for identifying Hikkakes nearly two years ago. The old version has been preserved here: █ OVERVIEW This script is a rework of an old script that identified the Hikkake candlestick pattern. While this pattern is not usually considered a part of the standard candlestick patterns set, I found a lot...
Inspired by the latest TASC article, the crocker graph is expanded to show 5 tickers. for commodity also draws a side box with current tickers candles so it can be used as standalone.
Bit of a fun indicator taking into the asset names and natural processes and also the fact that the crypto markets are (definitely) not run by weird occultists and naturalists. Looks for disturbances in price of these four key assets. Read into it what you will. Sometimes the clues are just in the names. Things you will learn from this script: 1. Using security...
My Own Kagi Indicator Implementation! I couldn't find anywhere on the internet a simple implementation of the Kagi indicator (apart from a seemingly complicated JavaScript implementation). So I decided to implement it myself and test it against the built-in Kagi indicator calculated by the built-in security function - They ended up exactly the same! (You can see...
This is an example of how to reference higher timeframe data without the need for a 'security()' call. I have attempted to create the function example: f_insecurity() with the purpose of wrapping up and pumping out all common relevent HTF price data that's needed for your everyday indicators in a reliable fashion.
NOTE The non-repainting technique in this publication that relies on bar states is now deprecated, as we have identified inconsistencies that undermine its credibility as a universal solution. The outputs that use the technique are still available for reference in this publication. However, we do not endorse its usage. See this publication for more information...
www.tradingview.com Following the last example from the link above, I added a function return to plot the calculated RSI value for each ticker. For this, I added the expression of the rsi bult-in function in the security call, to send as a return to the plot function. Ps. I purposely inverted the crossunder/crossover calls for testing here.
Script to display Supertrend trend state of 8 different securities in a panel. Timeframe & Tickers which are to be displayed can be configured from settings. Part of code is from the ADX DI Monitoring Panel script by u/wugamlo with his permission. Thanks to him for that and do please check out his work also.
There is a link below that further explain the purpose of this publication. A fresh new look into the limitations of the security() function and perhaps expand our horizons on having access to more accurate data no matter from what timeframe you are on. docs.google.com As always, it is my desire to help the community to continue reaching new highs.
This script is not intended for trading purposes but gives some examples how you can get values from previous candles in other timeframes, without using security calls. NOTE: the "open", "high" and "low" values are calculated "on the fly", as the bar progresses, the "close" is determined at the end of the timeframe, so it's only know at the first bar of the next...
This script allows you to compare the percentage-based change in the price of any two securities on any given (and supported) timeframe on the chart. This can give you a very simple way to compare any two securities against one another. Ex: If your base security gained 5%, and the other security gained 3% in a single day, the change comparison would show a green...
Hello traders This is a quick helper displaying the US bank holidays labels 1 day before the actual bank holiday date Useful to be reminded when it's better to not trade as the big "whales" aren't trading either - and are probably drinking cocktails on their yachts in the Caribbeans island This is my way of saying that, the days where the USA are off, the...
A script for SMMA calculated on fixed timeframe, different from the main chart's timeframe. As it's known, we can't use mutable variables with security. At the same time, SMMA references to the previous values. So it's impossible to create SMMA on different timeframe, just passing a variable with SMMA to security. To overcome this restriction, we should use a...
=== Easy dynamic resolution dashboard (initial) === Easy dashboard to show different running reolution bars most of the scale is adjustable. Current state is initial and could have some bugs, or been in a cleaner way of coding. Let me know if you find something so we could fix it Best way to start is in a seperate pane to adjust...
This Script plots the BTC Dominance chart in an indicator window, so you don't have to bother with tabs as much when doing your analysis. tips are always welcome at: (38uGQJDDZDL6wX48x4gYTccPeQ3ZHVYmY4) I hope you enjoy the script :)
Problem Pine's implementation of the security() function behaves differently in realtime vs. historical bars. Specifically, for historical bars, calling security() for a time frame (TF) larger/slower than the current chart's TF will return information about the last completed bar of the higher TF. However, for realtime bars (i.e. if you allow the chart to...