Crypto Market Cap, BTC/USD, ETH/USD, USDT/USD, XRP/USD, Bitcoin
FINGERPRINT CARDS AB SER. B, ABB LTD, KINDRED GROUP PLC, SOLTECH ENERGY SWEDEN AB, VOLVO, AB SER. B, HENNES & MAURITZ AB, H & M SER. B
OMX Stockholm 30 Index, S&P 500, Dow 30, Nasdaq Composite, Nikkei 225, DAX-indexet
SWEDEN GOVERNMENT BONDS 10 YR, US 10Y, Euro Bund, Tyskland 10ÅR, Japan 10Y, UK 10Y
█ OVERVIEW This script presents a new function to help coders use security() in both repainting and non-repainting modes. We revisit this often misunderstood and misused function, and explain its behavior in different contexts, in the hope of dispelling some of the coder lure surrounding it. The function is incredibly powerful, yet misused, it can become a...
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...
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.
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 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 :)
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...
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...
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...
=== 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...
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...
This script highlights the level at which a stock will go into SSR mode for the day. Useful when looking to short a stock
Detects if there is a correlation between two securities. It shows a positive level when they have been moving together and a negative level when they have been moving in opposite directions.
This is a script to call resolutions with some math on top of your base resolution. Using the modulo operator to quantize integer values, it works by converting the modified resolution integer to a 4 digit string value. Use the function within your own scripts to call funny resolutions otherwise difficult to calculate. You cannot add series expressions to...
This is a script to call resolutions with some math on top of your base resolution. THIS IS NOT AN INDICATOR TO USE ON A CHART!!! The resolution call function is really useful for your own scripting ideas! Using the modulo operator to quantize integer values, it works by converting the modified resolution integer to a 4 digit string value. The function...
This module is meant to act as a framework and platform over which to develop other indicators. On its own it does essentially nothing, yet simplifies the work of adding basic customizations and flexibility to ideas immediately. The chart on this post is not a demo, so its better to just try adding the indicator to a test chart — you may find it more convenient to...