จำนวนเข้าชม 3149
This indicator was designed to remove trend from price and make it easier to identify cycles.
Although this indicator has similarities to MACD . It is better used to identify the cycle of High and Lows based on the Statistical Data (Default is set to 25).
**** DO NOT USE THIS AS A MOMENTUM INDICATOR ****
As a word of caution the read this - http://bit.ly/1Arjoqp. This is a rip off, if you choose to pay a penny.
Although this indicator has similarities to MACD . It is better used to identify the cycle of High and Lows based on the Statistical Data (Default is set to 25).
**** DO NOT USE THIS AS A MOMENTUM INDICATOR ****
As a word of caution the read this - http://bit.ly/1Arjoqp. This is a rip off, if you choose to pay a penny.
// Created by UCSgears // Version 1 - Setting for the Power cycle is not determined yet. This is the concept. // Larry Gaines version of Cycle uses Linear Regression study(title="UCS_Cycle_V1", shorttitle="UCS-Cycle", overlay=false) // Classic Cycle Indicator uses SMA UseLinearRegression = input(true) PlotSignal = input(false) // The Source can be Based on OHLC4 or HL2 src = (ohlc4) len = input(25, title="Cycle Length") smooth = input (8, title = "Signal") basis = UseLinearRegression ? linreg(src, len, 0) : sma(src,len) cycle = close - basis cyclesig = PlotSignal ? ema(cycle,smooth) : 0 plot_color1 = cycle > 0 ? green : red plot(cycle, color = plot_color1, title = "Linear Regression Curve", style = columns, linewidth = 4) plot(cyclesig, color = gray, title = "Signal") //END // Version 2 will have all the settings for the 3 Power Cycle Bands with Options to Plot them all.
ความคิดเห็น
Here i offer how I would use the Cycles indicator, divergence bars everywhere if you know how to look for them. The focus on this image is just highlighting the Cycle bars which are counter trend. Reading from left to right we have one Sell, one Buy, one more Buy (short term) as this morphs into a Divergent Breakout and then the Divergent Breakout turns into a Bearish Breakout as the Cycle histogram breaches the low of the previous bearish Cycle low, very clear Sell signal. All based on the most import aspect of this indicator, the Signal line !!! Regression to the mean at its best. Very similar to the Awesome Oscillator with Signal but superior at pinpointing divergent price bars
For new traders, I would like to point out that this is the Setup for Cycle Trading. Using a personal Trigger concept will be better to mitigate the risk. Trade Setup + Trigger ===> Trade, Is my principle.
barcolor (plot_color1)