Mayer MultipleThe script implements a custom version of the Mayer multiple and it may be useful for analyzing the price of Bitcoin in a historical context.
Note n.1: Mayer multiple does not tell whether to buy, sell or hold, but highlights the best long-term area when the bitcoin price is below a threshold value (2.4).
Note n.2: the threshold value (2.4) has been determined in the past by simulations performed.
The script user may decide whether to use the shown graph or another graph for the calculation of the Mayer multiple.
The script is very easy to use and it is possible to change the following parameters:
the period of SMA (default value is 200)
the threshold (default value 2.4)
Show or not the sell area
Use or not the shown graph to calculate the Mayer multiple (default value is true)
name of exchange to use for calculation of the Mayer multiple (default value is BNC)
name of chart to use for calculation of the Mayer multiple (default value is BLX)
Mayer_multiple
BTC Mayer Multiple BandsIntroduced by Trace Mayer as a way to gauge the current price of Bitcoin against its long range historical price movements (200 day moving average), the Mayer Multiple highlights when Bitcoin is overbought or oversold in the context of longer time frames.
It's worth noting that as the market becomes larger and less volatile, the peaks are becoming less exaggerated. This is because a 200 day moving average baseline is a static yardstick against an ever growing, more stable, Bitcoin market. We should recalibrate what constitutes the overbought/oversold extremes on this chart accordingly.
Idea by CryptoKea. Original author:
Mayer Multiple Optimal Multi-Color Histogram [aamonkey]Mayer Multiple developed by Trace Mayer gives the ratio of price to 200 daily moving average.
Buy when it's white sell when it's orange.
Is intended for use on day chart only.
This is an extension of the Mayer Multiple developed by Trace Mayer.
Normally you only have 2 thresholds signaling buying or selling (blue and yellow).
However, I added 2 more thresholds signaling optimized buys and sells (white and orange).
Mayer MultipleThis indicator was created by Trace Mayer as a way to analyze the price of Bitcoin in a historical context. Consider it as a kind of Volatility Ratio that was created by Jack Schwager for the securities.
To learn more about Mayer Multiple see:
charts.woobull.com
mayermultiple.info
www.theinvestorspodcast.com
Good luck!
Mayer Multiple @ Current PriceThough this script is by me, the original idea comes from a podcast I heard where Trace Mayer talks about how he does crypto valuation. It is based on current price against the 200 day moving average. This indicator script will simply plot that value as a label overlayed on your trading view chart. Best long term results occur when acquiring BTC when the multiple is 2.4 or less. For more info, google "mayer multiple" This script/indicator is strictly for educational purposes. It is not exclusive to bitcoin.
To get the best look out of your charts I make the following changes.
1.Apply the indicator to your chart.
2. In the tools palette of trading view, when looking at a chart, click "Show Objects Tree" the icon displayed above the trash can.
In the objects tree panel, click the preferences icon for "Mayer Multiple @ Current Price"
Switch "scale" to "scale Left"
3. Then for your chart preferences (right click on chart background and select "Properties", and be sure the following are checked on the "Scales" tab
Left Axis
Right Axis
Indicator Last Value
Indicator Labels
Screenshots are not allowed in this view, so I can't post screenshots, but the view above is what it should look like when you are done.
For anyone who wants to see the code, here is the code of the script:
Use at will, and at your own risk.
//@version=3
// Created By Timothy Luce, inspired by Trace Mayer's 200 Day SMA cryptocurrency valuation method
study("Mayer Multiple @ Current Price", overlay=true)
currentPrice = close
currentDay = security(tickerid, "D", sma(close, 200))
mayerMultiple = currentPrice/currentDay
plot(mayerMultiple, color=#00ffaa, transp=100)
If you want to change the color, change this line: #00ffaa
Mayer Multiple (with muti-color histogram)This is inspired by unbound's work on the Mayer Multiple script.
This script is designed to work with the daily chart.
I created this script so you can see the daily Mayer Multiple by just hovering over the bar in the histogram. I modified the color of the histogram bar to indicate the following:
Red = Over 2.4x Mayer Multiple, overvalued
Yellow = Between 1x to 2.4x Mayer Mutiple, fairly valued
Green = Under 1x Mayer Multiple, undervalued
This is my first script so let me know if there are any issues or suggestions on how to change it.
MayerMultiple Price BBThis charts an indicator created by Trace Mayer with some extras.
Plots:
- Mayer Multiple
- Price adjusted by Mayer Multiple Average with Bollinger Bands
Moving Average Function can be selected from a list with standard functions and following experimental extras:
- Volume Weighted Exponential Moving Average
- Volume Weighted Time Decayed Moving Average // similar to vwema, but alpha is calculated from length as half-life decay function (not sure if I got that right...)
Default MA function is sma, to keep it true to the original MM indicator, but I think VWEMA and VWTDMA may perform better with exponential nature of Bitcoin .
Suggestions and bug reports are welcome =)