(This indicator was designed for the BTC index chart) Designed for Bitcoin. Plots the log of the close/20W SMA with a linear offset m*t, where m is the gradient I've chosen and t is the candle index. Anything above 1 is a mania phase/market cycle top. If it peaks around 0.92 and rolls over, it could be a local/market cycle top. This will obviously not work at...
Calculates a log-log regression from arrays. Due to line limits, for sets greater than the limit, only every nth value is plotted in order to cover the entire set.
I'm building quite a lot of pretty complicated indicators/strategies in Pine Script. Quite often they don't work from the 1 try so I have to debug them heavily. In Pine Script there are no fancy debuggers so you have to be creative. You can plot values on your screens, check them in the data window, etc. If you want to display some textual information, you can...
The main concept for creating this was to completely remove the whipsaw nature of VWAP by introducing lag. References: www.investopedia.com www.investopedia.com www.investopedia.com
Portfolio Metrics **New** 'returns' 'log returns' 'geometric returns' portfolio alpha portfolio beta portfolio,market correlation portfolio standard deviation portfolio variance mean portfolio returns maximum drawdown maximum gain
This indicator is almost identical to "Bollinger Bands %BB" except its calculations are performed in logspace and it adds an optional EMA line (after LazyBear's idea).
This code is a slightly modified version of Tradingviews' built-in "linear regression" script which can be correctly plotted on logarithmic charts.
This indicator is in principle similar to Stochastic Oscillator, but contains the following improvements: - advanced Ehlers-based smoothing (typically results in earlier signals than regular EMA smoothing) - graceful degradation when few candles present for improved accuracy in the beginning of the chart - buy/sell signals based on K-D crossover above/below thresholds
Here is my interpretation of the "Best Time To Buy" Bitcoin over its lifetime using a logarithmic regression trendline. The upper and lower lines are 10% deviations from the centre line. I calculated the trendline in excel and then coded my results into pine script.
A study of moving averages that utilizes different tricks I've learned to optimize them. Included is Bollinger Bands, Guppy (GMMA) and Super Guppy. The method used to make it MtF should be more precise and smoother than regular MtF methods that use the security function. For intraday timeframes, each number represents each hour, with 24 equal to 1 day. For daily,...
Library "LoggerLib" This is a logging library for Pinescript. It is aimed to help developers testing and debugging scripts with a simple to use logger function. Pinescript lacks a native logging implementation. This library would be helpful to mitigate this insufficiency. This library uses table to print outputs into its view. It is simple, customizable and...
The Natural Market Slope was created by Jim Sloman and this is one of his many Ocean Indicators which I'm publishing thanks to receiving source materials from @altcoinz and @tmac87. I did completely rewrite the formula for this indicator but I commented out the original calculation so you can compare or just for study purposes. I like this version better because...
This indicator uses identical calculation to Ichimoku indicator except performed in log-space. This is helpful for long-term and highly volatile charts.
Similar to basic EMA Ribbon indicator except uses log-space transformation. Should be better on very long timeframes and for determining beginning of a bull market. The tradeoff is that it is slower than regular EMA near peaks (regular EMA will outperform this indicator when determining when to sell).
Calculates Bollinger Bands in log space, which is useful for high-volatility charts and for looking at long-term growth
Experimental: Uses the Box-Cox Transformer with a deflection on the inversion to create log bands. to be used in log scaled charts.
Library "LineGetPriceOnLogScale" This library provides a way to calculate the y-coordinate of a line on a specified bar when the chart scale is Log. The built-in `line.get_price()` function only works with linear scale and gives incorrect results when the chart is in Log scale. The library only works with `bar_index` values and `xloc.bar_index`-based lines,...
This indicator has two features that make it better than standard SMMA for cryptocurrencies: - starts from the very first candle - calculations are performed in log-space which means less sensitivity to extreme volatility common in crypto world