Multi SMA EMA WMA HMA BB (5x8 MAs Bollinger Bands) MAX MTF - RRBMulti SMA EMA WMA HMA 4x7 Moving Averages with Bollinger Bands MAX MTF by RagingRocketBull 2019
Version 1.0
All available MAX MTF versions are listed below (They are very similar and I don't want to publish them as separate indicators):
ver 1.0: 4x7 = 28 MTF MAs + 28 Levels + 3 BB = 59 < 64
ver 2.0: 5x6 = 30 MTF MAs + 30 Levels + 3 BB = 63 < 64
ver 3.0: 3x10 = 30 MTF MAs + 30 Levels + 3 BB = 63 < 64
ver 4.0: 5(4+1)x8 = 8 CurTF MAs + 32 MTF MAs + 20 Levels + 3 BB = 63 < 64
ver 5.0: 6(5+1)x6 = 6 CurTF MAs + 30 MTF MAs + 24 Levels + 3 BB = 63 < 64
ver 6.0: 4(3+1)x10 = 10 CurTF MAs + 30 MTF MAs + 20 Levels + 3 BB = 63 < 64
Fib numbers: 8, 13, 21, 34, 55, 89, 144, 233, 377
This indicator shows multiple MAs of any type SMA EMA WMA HMA etc with BB and MTF support, can show MAs as dynamically moving levels.
There are 4 MA groups + 1 BB group, a total of 4 TFs * 7 MAs = 28 MAs. You can assign any type/timeframe combo to a group, for example:
- EMAs 9,12,26,50,100,200,400 x H1, H4, D1, W1 (4 TFs x 7 MAs x 1 type)
- EMAs 8,13,21,30,34,50,55,89,100,144,200,233,377,400 x M15, H1 (2 TFs x 14 MAs x 1 type)
- D1 EMAs and SMAs 8,13,21,30,34,50,55,89,100,144,200,233,377,400 (1 TF x 14 MAs x 2 types)
- H1 WMAs 13,21,34,55,89,144,233; H4 HMAs 9,12,26,50,100,200,400; D1 EMAs 12,26,89,144,169,233,377; W1 SMAs 9,12,26,50,100,200,400 (4 TFs x 7 MAs x 4 types)
- +1 extra MA type/timeframe for BB
There are several versions: Simple, MTF, Pro MTF, Advanced MTF, MAX MTF and Ultimate MTF. This is the MAX MTF version. The Differences are listed below. All versions have BB
- Simple: you have 2 groups of MAs that can be assigned any type (5+5)
- MTF: +2 custom Timeframes for each group (2x5 MTF) +1 TF for BB, TF XY smoothing
- Pro MTF: 4 custom Timeframes for each group (4x3 MTF), 1 TF for BB, MA levels and show max bars back options
- Advanced MTF: +4 extra MAs/group (4x7 MTF), custom Ticker/Symbols, Timeframe <>= filter, Remove Duplicates Option
- MAX MTF: +2 subtypes/group, packed to the limit with max possible MAs/TFs: 4x7, 5x6, 3x10, 4(3+1)x10, 5(4+1)x8, 6(5+1)x6
- Ultimate MTF: +individual settings for each MA, custom Ticker/Symbols
MAX MTF version tests the limits of Pinescript trying to squeeze as many MAs/TFs as possible into a single indicator.
It's basically a maxed out Advanced version with subtypes allowing for mixed types within a group (i.e. both emas and smas in a single group/TF)
Pinescript has the following limits:
- max 40 security calls (6 calls are reserved for dupe checks and smoothing, 2 are used for BB, so only 32 calls are available)
- max 64 plot outputs (BB uses 3 outputs, so only 61 plot outputs are available)
- max 50000 (50kb) size of the compiled code
Based on those limits, you can only have the following MAs/TFs combos in a single script:
1. 4x7, 5x6, 3x10 - total number of MTF MAs must always be <= 32, and you can still have BB and Num Levels = total MAs, without any compromises
2. 5(4+1)x8, 6(5+1)x6, 4(3+1)x10 - you can use the Current Symbol/Timeframe as an extra (+1) fixed TF with the same number of MTF MAs
- you don't need to call security to display MAs on the Current Symbol/Timeframe, so the total number of MTF MAs remains the same and is still <= 32
- to fit that many MAs into the max 64 plot outputs limit you need to reduce the number of levels (not every MA Group will have corresponding levels)
Features:
- 4x7 = 28 MAs of any type
- 4x MTF groups with XY step line smoothing
- +1 extra TF/type for BB MAs
- 2 MA subtypes within each group/TF
- 4x7 = 28 MA levels with adjustable group offsets, indents and shift
- supports any existing type of MA: SMA, EMA, WMA, Hull Moving Average (HMA)
- custom tickers/symbols for each group
- show max bars back option
- show/hide both groups of MAs/levels/BB and individual MAs
- timeframe filter: show only MAs/Levels with TFs <>= Current TF
- hide MAs/Levels with duplicate TFs
- support for custom TFs that are not available in free accounts: 2D, 3D etc
- support for timeframes in H: H, 2H, 4H etc
Notes:
- Uses timeframe textbox instead of input resolution dropdown to allow for 240 120 and other custom TFs
- Uses symbol textbox instead of input symbol to avoid establishing multiple dummy security connections to the current ticker - otherwise empty symbols will prevent script from running
- Possible reasons for missing MAs on a chart:
- there may not be enough bars in history to start plotting it. For example, W1 EMA200 needs at least 200 bars on a weekly chart.
- for charts with low/fractional prices i.e. 0.00002 << 0.001 (default Y smoothing step) decrease Y smoothing as needed (set Y = 0.0000001) or disable it completely (set X,Y to 0,0)
- for charts with high price values i.e. 20000 >> 0.001 increase Y smoothing as needed (set Y = 10-20). Higher values exceeding MAs point density will cause it to disappear as there will be no points to plot. Different TFs may require diff adjustments
- TradingView Replay Mode UI and Pinescript security calls are limited to TFs >= D (D,2D,W,MN...) for free accounts
- attempting to plot any TF < D1 in Replay Mode will only result in straight lines, but all TFs will work properly in history and real-time modes. This is not a bug.
- Max Bars Back (num_bars) is limited to 5000 for free accounts (10000 for paid), will show error when exceeded. To plot on all available history set to 0 (default)
- Slow load/redraw times. This indicator becomes slower, its UI less responsive when:
- Pinescript Node.js graphics library is too slow and inefficient at plotting bars/objects in a browser window. Code optimization doesn't help much - the graphics engine is the main reason for general slowness.
- the chart has a long history (10000+ bars) in a browser's cache (you have scrolled back a couple of screens in a max zoom mode).
- Reload the page/Load a fresh chart and then apply the indicator or
- Switch to another Timeframe (old TF history will still remain in cache and that TF will be slow)
- in max possible zoom mode around 4500 bars can fit on 1 screen - this also slows down responsiveness. Reset Zoom level
- initial load and redraw times after a param change in UI also depend on TF. For example: D1/W1 - 2 sec, H1/H4 - 5-6 sec, M30 - 10 sec, M15/M5 - 4 sec, M1 - 5 sec. M30 usually has the longest history (up to 16000 bars) and W1 - the shortest (1000 bars).
- when indicator uses more MAs (plots) and timeframes it will redraw slower. Seems that up to 5 Timeframes is acceptable, but 6+ Timeframes can become very slow.
- show_last=last_bars plot limit doesn't affect load/redraw times, so it was removed from MA plot
- Max Bars Back (num_bars) default/custom set UI value doesn't seem to affect load/redraw times
- In max zoom mode all dynamic levels disappear (they behave like text)
- Dupe check includes symbol: symbol, tf, both subtypes - all must match for a duplicate group
- For the dupe check to work correctly a custom symbol must always include an exchange prefix. BB is not checked for dupes
Good Luck! Feel free to learn from/reuse the code to build your own indicators.
Multi-timeframe
9 Seasons Rainbow Multiple Time Frames Pattern PRO [9SPEN]The indicator discovers profitable patterns by associating Price Season of multiple time frames.
Full Name: 9 Seasons Rainbow - Multiple Time Frames Associated Price Wave Pattern Indicator
This is redefined from “9 Seasons Rainbow Indicator PRO”, with clearer definition of 9 Seasons and user manual.
Version: Invite-Only PRO
Language: English
Copyright: 2019
---------- How to use the indicator ----------
Go through the manual and related ideas underneath or follow the tutorials list. Look through the profitable patterns and related cases, wait for or set alert for specific profitable pattern.
---------- Definition: 9 Seasons ----------
A life cycle of Price Wave is divided into 9 Seasons. Each time frame, from 5 minute to 1 month, has 9 seasons, Independent of each other:
Bull (Green)
Bull Pullback (Light Green): a pullback or retracement
Resistance / Overbought (Yellow): a resistance area, may become a Top, or be broken through.
Crazy Bought (Lime): Price is going up in a high volatility, could be a valid breakout, or a Bull Trap.
Neutral (White): a wandering season without direction, evolves into Bull or Bear
Bear (Red)
Bear Bounce (Light Red): Price bounces
Support / Oversold (Blue): a support area, may become a Bottom, or be broken through.
Crazy Sold (Fuchsia): Price is going down in a high volatility, could be a valid breakdown, or a Bear Trap.
---------- Some important evolution between seasons ----------
Resistance / Overbought (Yellow) -> Crazy Bought (Lime):
Bull is breaking through a resistance.
Crazy Bought (Lime) -> Resistance / Overbought (Yellow):
This normally indicates a failed breakout, Price goes back to the resistance.
Crazy Bought (Lime) -> Bull Pullback (Light Green):
This normally indicates Price has risen to a new level
Support / Oversold (Blue) -> Crazy Sold (Fuchsia):
Bear is breaking through a support.
Crazy Sold (Fuchsia) -> Support / Oversold (Blue):
This normally indicates a failed breakdown, Price recovers to the support.
Crazy Sold (Fuchsia) -> Bear Bounce (Light Red):
This normally indicates price has dropped to a new level
---------- Rainbow Ribbons for Multiple Time Frames ----------
Each ribbon of a rainbow represents a time frame.
The uppermost ribbon represents the shortest-term time frame - current time period of the chart, which is the time frame for trading.
The lowermost ribbon represent longest-term time frame, which work as environment, together with the other medium-term and long-term time frames.
The difference between two frames is 1.4142 fold (square root of 2), if level 1 is 15 minute, level 2 is 15 minute * (square root of 2) .
Examples of time frames in a rainbow:
For STANDARD in 15M: 15M - 21M - 30M - 42M - 60M(1H) - 85M - 120M(2H) - 170M
For PRO in 15M: 15M - 21M - 30M - 42M - 60M(1H) - 85M - 120M(2H) - 170M - 240M(4H) - 339M - 480M(8H) - 679M
---------- Trading Methods ----------
How to open a Long position?
When a profitable Long pattern appears, open small position first based on signal on shortest-term time frame; after retesting and confirming the support, open 2nd position; when it breaks through the resistance, pullbacks and confirms the breakout, open 3rd position.
How to exit a Long position?
Lift the Stop to a confirmed higher low, so that to take advantages of the bull run as possible.
How to open a Short position?
When a profitable Short pattern appears, open small position first based on signal on shortest-term time frame; after retesting and confirming the resistance, open 2nd position; when it breaks through the support, bounces and confirms the breakdown, add 3rd position.
How to exit a Short position?
Lower the Stop to a confirmed lower high, so that to take advantages of the bear run as possible.
---------- Versions Description ----------
The features may change later without advance notice.
PRO:
Invite-Only, with the following advanced features:
12 Ribbons Rainbow displays 9 Seasons of 12 time frames on a chart.
Advanced alert sets allows set alerts on short-term, medium-term, and long-term time frames.
Capability to input different trading instrument to compare with the current ticker.
Full time periods access allows apply it to broadest time periods, from 1 minute to 1 week (if history data is enough)
More new features in updates.
STANDARD:
Invite-Only, with the following advanced features:
8 Ribbons Rainbow displays 9 Seasons of 8 time frames on a chart.
Advanced alert sets allows set alerts on upper and lower frames.
Broad time periods access allows apply it to the most popular time periods, from 15 minute to 1 week (if history data is enough)
More new features in updates.
DEMO:
DEMO version is for trial purpose, having most of the features.
It is applicable to a list of trading instruments and specific time periods (1 hour to 1 day), which may change later without advance notice.
---------- Access to Indicators ----------
Please use DEMO version for Trial
Asking access to Invite-Only PRO and STANDARD versions:
9seasonsrainbowindicator.blogspot.com
Or contact the author.
---------- Install Invite Only: STANDARD & PRO Version----------
Ask access to STANDARD or PRO version
Open the chart -> Indicators (On the Top) -> Invite-Only Scripts (2nd button of the left bar)
Like/Favorite the indicator
Click to install on the chart
---------- About Loading Time ----------
It may take up to 2 minutes for your browser to load a new setting, depending on the your computer and network speed.
---------- List of the author's Indicators ----------
www.tradingview.com
---------- Disclaimer ----------
By using or requesting access to the indicator, you acknowledge that you have read and accepted that the indicator and any related content, including but not limited to: user manual, tutorials, ideas, videos, chats, emails, blog, are for the purpose of trading strategies studying and paper trading.
If a customer or user uses the indicator or related content mentioned above for live trading or investment, she/he should take all risks and be responsible for her/his own trading and investment activities.
---------- Updates ----------
The latest updates override the previous description.
To activate a update: Close the browser, Reopen the chart and apply the indicator.
Combined MTF Camarilla Pivots (HA + Candles)This is a fairly basic (but hopefully useful) indicator that combines three time-frames of Camarilla pivots into one.
Default time-frames are:
Weekly
Monthly
Yearly
Time-frames can be modified as you wish, they are just set to these as I generally only trade higher intervals (just note that formatting labels will not change - but you can update these as needed).
The Camarilla pivots displayed are as follows:
R3, R4, R5, R6
Pivot line (Middle/Base)
S3, S4, S5, S6
R1/S1 & R2/S2 are excluded to make way for R5/S5 & R6/S6 - as these are more useful for the majority of traders. The formula for levels 5/6 are always up for debate, as no official formula has ever been released. I've used what I consider a mid, or consensus calculation.
By default all historical pivot levels are displayed, as there can be some benefit to mapping these forward once the relevant period has ended. If people find it's too cluttered I'll look into having an option to display the current period only.
Unfortunately, TradingView doesn't allow labels on plots (seems like such a basic feature to be missing, but there you go), so you'll have to learn the colours/linewidths.
Oh, and there's a checkbox to enable pivots to be calculated on Heiken-Ashi prices/candles rather than default prices/candles. This heavily modifies the location of the Camarilla Pivots, but I've found that in certain situations you can get some great results.
Let me know your thoughts/comments/suggestions.
Cheers
DD
Improved Multi-Timeframe (MTF) EMA 200/50/21These multi-timeframe 21, 50 and 200 period ema use an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,21)/(close,50)/(close,200) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) SMA 200/50/21These multi-timeframe 21, 50 and 200 period sma use an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,21)/(close,50)/(close,200) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
ema34/89Made on request.
These multi-timeframe 34 and 89 period ema use an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,34)/(close,89) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) 14 RSI - plots same as live dataThis multi-timeframe 14-period Relative Strength Index uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,14) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) 21 TRC - plots same as live dataThis multi-timeframe 21-period true range channel uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
This indicator uses a similar calculation the "Keltner Channel" indicator.
Input values are fixed to their default (close,21,3) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) 21 ATR - plots same as live dataThis multi-timeframe 21-period average true range uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,21) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) TRL - plots same as live dataThese multi-timeframe True Range Levels use an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
This indicator was previously published as "True Range Bands" and uses a similar calculation the "SuperTrend" and "Volatility Stop" indicators.
Input values are fixed to their default (close,14,3) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) 200 SMA - plots same as live dataThis multi-timeframe 200-period simple moving average uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,200) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) 50 SMA - plots same as live dataThis multi-timeframe 50-period simple moving average uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,50) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) 21 SMA - plots same as live dataThis multi-timeframe 21-period simple moving average uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,21) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) 200 EMA - plots same as live dataThis multi-timeframe 200-period exponential moving average uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,200) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) 50 EMA - plots same as live dataThis multi-timeframe 50-period exponential moving average uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,50) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution , only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) 21 EMA - plots same as live dataThis multi-timeframe 21-period exponential moving average uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,21) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution, only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Improved Multi-Timeframe (MTF) MACD - plots same as live dataThis multi-timeframe MACD uses an improved calculation to accurately calculate the indicator's value with every new bar on the time frame your chart is set to. Previously the indicator only recalculated with every new update on the timeframe used in its security function. This means that this improved script plots the real, current value of your indicator across your chosen timeframes on your chart's resolution and no longer only plots only the indicator's monthly/weekly/daily/4 hour/ect closing value on the your chart.
Input values are fixed to their default (close,12,26) configuration to make this indicator's improved calculation possible.
When using "Plot Higher Timeframe?" the script will set the indicator to only plot its value in closest larger timeframe. This option overrides the two following options. For example, when using the daily resolution, only the weekly value will plot, or when using the one hour (60m) resolution, only the 4 hour (240m) value will plot.
The "Omit Higher Timeframes?" option will set the indicator to only plot starting from the 1/2/3/4/5/6/7th closest larger timeframe. For example, when using the daily resolution and this option set to 0, all values from the weekly resolution and up will plot, but if set to 1, all values from the monthly resolution and up will plot instead.
The "Plot Yearly/Quarterly/Monthly/Weekly/Daily/4 Hour/1 Hour/15 Minute/5 Minute?" options allow enabling/disabling a specific timeframe. All are enabled by default. For example, if you do not want the yearly value of the indicator to ever plot, you can disable the "Plot Yearly?" option.
Supertrend Multi Time Frame - Auto HTF calculationThere is already SuperTrend indicator and thanks to its developer.
This script draws supertrend for current and higher time frame, it automatically calculates higher time frame and you don't need to adjust it when you change the period.
it also change the color of bars according to current and HTF supertrend, so you can see the trend by looking at bars color.
Bar color is lime if trend is up and red if trend is down. but if you see white bars then there is movement opposite the main trend.
if you like it please comment.
Cuban's MTF Fisher BacktesterA multi-timeframe Fisher indicator that has been updated to Pine version 3, added linear regression and RMA lines with up down colour coding, alert conditions for ease and autoview automatic trading, and a few other little tricks.
This indicator will no longer repaint and will provide more accurate signals. I've also added a backtester to allow you to find something that works for you. Just search 'Cuban's MTF Fisher Backtester'.
If you would like any features added, DM me on Tradingview or Twitter.
Cuban's MTF FisherA multi-timeframe Fisher indicator that has been updated to Pine version 3, added linear regression and RMA lines with up down colour coding, alert conditions for ease and autoview automatic trading, and a few other little tricks.
This indicator will no longer repaint and will provide more accurate signals. I've also added a backtester to allow you to find something that works for you. Just search 'Cuban's MTF Fisher Backtester'.
If you would like any features added, DM me on Tradingview or Twitter.
High and Lows Multi-timeframeThis script displays highs and lows from higher timeframes into the chart. Recommended to use Weekly or more lines on smaller timeframe charts like the 5M charts.
Multi SMA EMA WMA HMA BB (4x5 MAs Bollinger Bands) Adv MTF - RRBMulti SMA EMA WMA HMA 4x5 Moving Averages with Bollinger Bands Advanced MTF by RagingRocketBull 2019
Version 1.0
This indicator shows multiple MAs of any type SMA EMA WMA HMA etc with BB and MTF support, can show MAs as dynamically moving levels.
There are 4 MA groups + 1 BB group, a total of 4 TFs * 5 MAs = 20 MAs. You can assign any type/timeframe combo to a group, for example:
- EMAs 12,26,50,100,200 x H1, H4, D1, W1 (4 TFs x 5 MAs x 1 type)
- EMAs 8,10,13,21,30,50,55,100,200,400 x M15, H1 (2 TFs x 10 MAs x 1 type)
- D1 EMAs and SMAs 8,10,12,26,30,50,55,100,200,400 (1 TF x 10 MAs x 2 types)
- H1 WMAs 7,77,89,167,231; H4 HMAs 12,26,50,100,200; D1 EMAs 89,144,169,233,377; W1 SMAs 12,26,50,100,200 (4 TFs x 5 MAs x 4 types)
- +1 extra MA type/timeframe for BB
There are several versions: Simple, MTF, Pro MTF, Advanced MTF and Ultimate MTF. This is the Advanced MTF version. The Differences are listed below. All versions have BB
- Simple: you have 2 groups of MAs that can be assigned any type (5+5)
- MTF: +2 custom Timeframes for each group (2x5 MTF) +1 TF for BB, TF XY smoothing
- Pro MTF: 4 custom Timeframes for each group (4x3 MTF), 1 TF for BB, MA levels and show max bars back options
- Advanced MTF: +2 extra MAs/group (4x5 MTF), custom Ticker/Symbols, Timeframe <>= filter, Remove Duplicates Option
- Ultimate MTF: +individual settings for each MA, custom Ticker/Symbols
Features:
- 4x5 = 20 MAs of any type
- 4x MTF groups with XY step line smoothing
- +1 extra TF/type for BB MAs
- 4x5 = 20 MA levels with adjustable group offsets, indents and shift
- supports any existing type of MA: SMA, EMA, WMA, Hull Moving Average (HMA)
- custom tickers/symbols for each group - you can compare MAs of the same symbol across exchanges
- show max bars back option
- show/hide both groups of MAs/levels/BB and individual MAs
- timeframe filter: show only MAs/Levels with TFs <>= Current TF
- hide MAs/Levels with duplicate TFs
- support for custom TFs that are not available in free accounts: 2D, 3D etc
- support for timeframes in H: H, 2H, 4H etc
Notes:
- Uses timeframe textbox instead of input resolution dropdown to allow for 240 120 and other custom TFs
- Uses symbol textbox instead of input symbol to avoid establishing multiple dummy security connections to the current ticker - otherwise empty symbols will prevent script from running
- Possible reasons for missing MAs on a chart:
- there may not be enough bars in history to start plotting it. For example, W1 EMA200 needs at least 200 bars on a weekly chart.
- price << default Y smoothing step 5. For charts with low/fractional prices (i.e. 0.00002 << 5) adjust X Y smoothing as needed (set Y = 0.0000001) or disable it completely (set X,Y to 0,0)
- TradingView Replay Mode UI and Pinescript security calls are limited to TFs >= D (D,2D,W,MN...) for free accounts
- attempting to plot any TF < D1 in Replay Mode will only result in straight lines, but all TFs will work properly in history and real-time modes. This is not a bug.
- Max Bars Back (num_bars) is limited to 5000 for free accounts (10000 for paid), will show error when exceeded. To plot on all available history set to 0 (default)
- Slow load/redraw times. This indicator becomes slower, its UI less responsive when:
- Pinescript Node.js graphics library is too slow and inefficient at plotting bars/objects in a browser window. Code optimization doesn't help much - the graphics engine is the main reason for general slowness.
- the chart has a long history (10000+ bars) in a browser's cache (you have scrolled back a couple of screens in a max zoom mode).
- Reload the page/Load a fresh chart and then apply the indicator or
- Switch to another Timeframe (old TF history will still remain in cache and that TF will be slow)
- in max possible zoom mode around 4500 bars can fit on 1 screen - this also slows down responsiveness. Reset Zoom level
- initial load and redraw times after a param change in UI also depend on TF. For example:
D1/W1 - 2 sec, H1/H4 - 5-6 sec, M30 - 10 sec, M15/M5 - 4 sec, M1 - 5 sec.
M30 usually has the longest history (up to 16000 bars) and W1 - the shortest (1000 bars).
- when indicator uses more MAs (plots) and timeframes it will redraw slower. Seems that up to 5 Timeframes is acceptable, but 6+ Timeframes can become very slow.
- show_last=last_bars plot limit doesn't affect load/redraw times, so it was removed from MA plot
- Max Bars Back (num_bars) default/custom set UI value doesn't seem to affect load/redraw times
- In max zoom mode all dynamic levels disappear (they behave like text)
1. based on 3EmaBB, uses plot*, barssince and security functions
2. you can't set certain constants from input due to Pinescript limitations - change the code as needed, recompile and use as a private version
3. Levels = trackprice implementation
4. Show Max Bars Back = show_last implementation
5. swma has a fixed length = 4, alma and linreg have additional offset and smoothing params
6. Smoothing is applied by default for visual aesthetics on MTF. To use exact ma mtf values (lines with stair stepping) - disable it
Good Luck! You can explore, modify/reuse the code to build your own indicators.
9 Seasons Rainbow Indicator PRO [GO8686]Trading on 5 minutes frame can be as reasonable as on 4H frame, use 9 Seasons Rainbow Indicator PRO for both.
5分钟维度的交易可以与4小时维度一样合理,请使用9季彩虹指标 PRO 。
Market is full of life, with seasons.
9 Seasons Rainbow Indicator displays 9 seasons of any trading instrument in multiple time frames, helping traders and investors understand the flow of price.
The combination of seasons in different time dimensions may give perfect trading signals, for instance: overbought in both small time frame and big time frame has high success probability of shorting trade.
Please install the indicator: Demo, PRO or STANDARD Version. Apply the indicator to your favorites trading instruments: indices, stocks, futures , forex or crypto currencies. Find your patterns that make money.
---------- 9 Seasons ----------
Bull(Green), evolves into BullRest, OverBought, Bear, or Neutral
Bull Rest(Light Green): a pullback or retracement, evolves into Bull or Bear
OverBought(Yellow): may have defined a top or resistance, can happen in range, evolves into CrazyBought or Bear
CrazyBought(Lime): going up in a high volatility , evolves into Bear, OverBought, or BullRest
Neutral(White): a wandering season without direction, evolves into Bull or Bear
Bear(Red), evolves into BearRest, OverSold, Bull or Neutral
Bear Rest(Light Red): a bounce, evolves into Bear or Bull
OverSold(Blue): may have defined a bottom or support, can happen in range, evolves into CrazySold or Bull
CrazySold(Fuchsia): going down in a high volatility , evolves into Bull, OverSold, or BearRest
---------- Some important evolutions of seasons ----------
OverBought -> CrazyBought: can happen with a breakout
CrazyBought -> OverBought or Bear: could mean fading of a breakout
CrazyBought -> BullRest: can happen after rising over a new level
OverSold -> CrazySold: can happen with a breakdown
CrazySold -> OverSold or Bear: could mean fading of a breakdown
CrazySold -> BearRest: can happen after dropping to a new level
---------- Rainbow Ribbons for multiple time frames ----------
Each ribbon of the rainbow represents a time frame,
The difference between two frames is 1.4142 fold (square root of 2), if level 1 is 15 M, level 2 is 15 * (square root of 2) M. level 3 is 15*2 M, level 4 is 30 * (square root of 2) M, level 5 is 30 * 2 m etc.
The uppermost ribbon represents the smallest time frame - current time period of the chart.
The lower ribbons represent bigger time frames, which work as context.
Examples for time frame rainbow:
For DEMO in 30M: 30M - 42M - 60M(1H) - 85M - 120M(2H) - 170M - 240M(4H) - 339M
For STANDARD in 15M: 15M - 21M - 30M - 42M - 60M(1H) - 85M - 120M(2H) - 170M
For PRO in 15M: 15M - 21M - 30M - 42M - 60M(1H) - 85M - 120M(2H) - 170M - 240M(4H) - 339M - 480M(8H) - 679M
---------- Versions Description ----------
The features may change later, please refer to latest update.
PRO:
PRO version of 9 Seasons Rainbow Indicator is invite-only, with the following advanced features:
12 Ribbon Rainbow lets you discover trading opportunities hidden in the 1.4142 fold time dimension while monitoring market conditions spanning 45 times.
Advanced alert sets allows you set alerts for Overbought, Crazybought, OverSold, CrazySold on low, medium, and high time frames.
Option to input different trading instrument to compare with the current ticker.
Full time periods access allows you to watch the market on broadest time dimensions.
More new features in updates.
STANDARD:
This is STANDARD version of 9 Seasons Rainbow Indicator, invite-only, with the following advanced features:
8 Ribbon Rainbow lets you discover trading opportunities hidden in the 1.4142 fold time dimension while monitoring market conditions spanning 11 times.
Advanced alert sets allows you set alerts for Overbought, Crazybought, OverSold, CrazySold on upper and lower time frames.
Broad time periods access allows you to watch the market on popular time dimensions from 15M - 1D,2D,3D,4D,5D,6D,1W.
More new features in updates.
DEMO:
A DEMO of Standard version for trial purpose, having most the functions except alert preset conditions.
It is applicable to a list of trading instruments and specific time periods(30m-1D), which may change later. please refer to latest updates.
---List of tickers applicable for Demo version.
Currency Index:AXY, BXY , CXY , DXY , EXY , JXY , SXY , ZXY ,
Stock Index:SPX,TSX, DAX , NI225 ,KOSPI,399001, SHCOMP , HSI , XJO , TAIEX , SX5E ,
Crypto:BTCUSD
Commodity:BCOUSD, GOLD
---------- Access to Indicators ----------
Please use DEMO version to taste the indicator.
Please contact the author for access to PRO or Standard versions.
---------- About Loading Time ----------
It may take up to 2 minutes for your browser to load a new setting, depending on the your computer and network speed.
---------- List of the author's Indicators ----------
tradingview.com/u/go8686/#published-scripts
---------- Disclaim ----------
By using or requesting access to this indicator, you acknowledge that you have read and accepted that this indicator is for study purposes only and it does NOT guarantee you will make money.
I am not financial adviser and I am NOT responsible for any profits or losses you may incur by using this indicator!
Users should make their own decisions, carefully assess risks and be responsible for investment and trading activities.
The latest updates override the previous description. Please check the updates.
9季彩虹指标 PRO
市场充满生机。
9季彩虹指标在多个时间维度上显示任何交易品种的9个季节交替,帮助交易者和投资者了解价格流动。
不同时间维度的季节组合可以给出完美的交易信号,例如:在小时间框架和大时间框架上同时出现超买具有很高的卖空交易成功概率。
请安装指标:DEMO,STANDARD 或者 PRO 版本. 应用指标到您的交易品种:证券,期货,外汇或者加密货币。找到属于您的盈利模式。
---------- 季节的定义 ----------
牛(绿色),可以演变到牛市回调,超买,熊 或者 中性
牛市回调(淡绿色):可以演变到牛或者熊
超买(黄色),可能刚刚定义了一个头部或者阻力区,可以发生在盘整期,可以演变到狂买或者熊
狂买(亮绿色):高波动性上涨,可以演变到熊,超买或者牛市回调
中性(白色): 没有方向的徘徊期,可以演变到牛或者熊
熊(红色),可以演变到熊市反弹,超卖,牛 或者 中性
熊市反弹(淡红色),可以演变到熊或者牛
超卖(蓝色),可能刚刚定义了一个底部或者支撑,可以发生在盘整期,可以演变到狂卖或者牛
狂卖(紫红色),高波动性下跌,可以演变到牛,超卖 或者熊市反弹
一些重要的季节交替
超买 -> 狂买:可能发生在向上突破时
狂买 -> 熊 或者 超买:可能发生在突破失败时
狂买 -> 牛市回调: 可能发生在上平台后
超卖 -> 狂卖:可能发生在向下突破时
狂卖 -> 牛 或者 超卖:可能发生在突破失败时
狂卖 -> 熊市回调: 可能发生在下平台后
---------- 色带彩虹所代表的时间维度 ----------
每条色带代表一个时间维度。
色带间隔1.4142倍(2的开方),如果第一维度是15分钟,第二维度是15*1.4142=21分钟,第三维度是15*2=30分钟,以此类推。
最上面的色带代表最小的时间维度,也就是目前图表的时间维度
最下面的色带代表最大的时间维度。
例子:
演示版: 30m-42m-60m(1H)-85m-120m(2H)-170m-240m(4H)-339m
标准版: 15m-21m-30m-42m-60m(1H)-85m-120m(2H)-170m
专业版: 15m-21m-30m-42m-60m(1H)-85m-120m(2H)-170m-240m(4H)-339m-480m(8H)-679m
---------- 不同版本功能描述 ----------
这些特征及功能可能会发生变化,以更新为准。
---专业版PRO高级特征
12色带彩虹让您发现隐藏在1.4142时间维度的交易机会,同时监控时间跨度达四十五倍的市场状态
高级警报功能:允许您在低,中,高时间帧上设置超买,狂买,超卖,狂卖的警报。
可以输入不同的交易品种用于指标,便于与当前交易品种进行比较。
全时间维度(分钟到日线级别)给您全视角观察市场
更新中的更多新功能。
---标准版STANDARD特征
8色带彩虹让您发现隐藏在1.4142时间维度的交易机会,同时监控时间跨度达十一倍的市场状态
高级警报功能:允许您在低,高时间层级上设置超买,狂买,超卖,狂卖的警报。
宽时间维度(15分钟到日线级别)让您从更宽阔的视角观察市场
更新中的更多新功能。
--演示版DEMO
演示版用于标准版的演示和试用,适用于特定的资产列表和时间维度(30M-1D),后续可能调整.
适用的品种列表
AXY , BXY , CXY , DXY , EXY , JXY , SXY , ZXY ,
SPX ,TSX, DAX , NI225 ,KOSPI,399001, SHCOMP , HSI , XJO , TAIEX , SX5E ,
BTCUSD , BCOUSD , GOLD
---------- 获得使用权 ----------
请使用演示版以初步了解指标的运行机理。
联系指标开发者以取得标准版和专业版的使用权
---------- 开发者的指标列表 ----------
tradingview.com/u/go8686/#published-scripts
---------- 加载时间 ----------
可能需要2分钟,取决于网络和电脑配置。
---------- 免责声明 ----------
在要求获得本指标使用权之前以及在使用本指标之前,用户认可已经完全了解和接受:本指标仅供研究目的, 它不提供任何赢利的可能性。
本指标的开发者并非专业投资顾问,因此不对用户的任何赢亏负责。
用户应独立判断,审慎评估并自负投资和交易风险!
最近的更新会覆盖之前的说明。 请参阅更新来查看指标的新特征和功能。