• 股票分析的技巧有哪些 异邦量化方针:15分钟图表上的斐波那契数列与RSI聚拢趋势回转信号政策
  • 53财富达人
股票分析 导航
股票分析 热门
股票分析 推荐
当前位置: 53财富达人 > 股票分析 >

股票分析的技巧有哪些 异邦量化方针:15分钟图表上的斐波那契数列与RSI聚拢趋势回转信号政策

时间:2024-11-24 06:30 来源:未知 字体大小:【

股票分析的技巧有哪些 异邦量化方针:15分钟图表上的斐波那契数列与RSI聚拢趋势回转信号政策

这个方针聚拢了斐波那契水和缓自界说RSI阈值,以提供在特定市集条目下潜在回转区域的全面分析。它专为15分钟(M15)图表遐想,凭据界说的建树和工夫条目提供信号。

更好的私用方针,期货自动化来回风物与股票自动化风物在星球

图片

方针主要特质:1. RSI方针与自界说阈值:该方针使用RSI(相对强弱指数),自界说阈值为75默示超买,20默示超卖。它还包括在30分钟周期内(即2个M15柱)的超买和超卖说明,RSI值分别为70和30,以增强信号的有用性。2. 斐波那契水和缓膨大:该方针基于昔时50个柱筹办斐波那契回撤水平(0%、23.6%、38.2%、50%、61.8%、78.6%和100%)。斐波那契膨大也在1.618和2.618水平绘制,提供罕见的不绝或潜在回转区域。

图片

3. 买入和卖出信号:当RSI低于20,RSI在至少30分钟内保抓在30以下,且价钱达到61.8%斐波那契水平淡,生成买入信号。当RSI高于75,RSI在至少30分钟内保抓在70以上,且价钱达到50%斐波那契水平淡,生成卖出信号。这些条目使来回者好像有针对性地捕捉潜在的趋势回转。4. 闪现和绘制:斐波那契水平以不同神采绘制在图表上以区别它们,关节水平(50%)为红色,入场水平(61.8%)为绿色。膨大以黄色闪现,默示潜在的不绝水平。当闲散条目时,买入和卖出信号分别用“BUY”和“SELL”图标象征在柱形图上方或下方。RSI也在子窗口中闪现,以追踪其相干于阈值的值。

图片

方针使用风物:

该方针专为M15图表上的剥头皮或波段来回遐想。用户不错移动RSI阈值以微调条目,以符合其来回作风。该方针提供基于关节斐波那契水和缓工夫基础RSI说明的多重步伐分析,以支撑潜在的入场和出场点。

方针源代码://@version=5indicator('Fibonacci + RSI Trading Strategy with Fibonacci Extensions (M15)', overlay=true)// Paramètres du RSIrsiLength = input.int(14, title='RSI Length')rsiOverbought = input.int(75, title='RSI Overbought Level') // RSI en surachat à 75rsiOversold = input.int(20, title='RSI Oversold Level') // RSI en survente en dessous de 20// Conditions supplémentaires de surachat/survente sur 30 minutes (2 bougies M15)rsiOverboughtConfirm = 70 // Condition supplémentaire : RSI au-dessus de 70 pendant plus de 30 minutes (2 bougies M15)rsiOversoldConfirm = 30 // Condition supplémentaire : RSI en dessous de 30 pendant plus de 30 minutes (2 bougies M15)// Limiter l'application à la période M15if (timeframe.period != '15') alert('This strategy works only on 15-minute charts!', alert.freq_once_per_bar)// Calcul du RSIrsiValue = ta.rsi(close, rsiLength)// Définir les conditions pour qu'un RSI soit au-dessus de 70 pendant 30 minutes (2 bougies M15)rsiAbove70_2Bars = ta.barssince(rsiValue < rsiOverboughtConfirm) >= 2 // RSI doit rester au-dessus de 70 pendant 2 bougiesrsiBelow30_2Bars = ta.barssince(rsiValue > rsiOversoldConfirm) >= 2 // RSI doit rester en dessous de 30 pendant 2 bougies// Identifier le plus haut et le plus bas pour tracer les retracements et extensions de Fibonaccivar float highestHigh = navar float lowestLow = navar bool isUptrend = naif (ta.highestbars(high, 50) == 0) highestHigh := highif (ta.lowestbars(low, 50) == 0) lowestLow := lowif (highestHigh > lowestLow) isUptrend := trueelse isUptrend := false// Calcul des niveaux de Fibonacci et des extensionsfib0 = lowestLowfib236 = lowestLow + (highestHigh - lowestLow) * 0.236fib382 = lowestLow + (highestHigh - lowestLow) * 0.382fib50 = lowestLow + (highestHigh - lowestLow) * 0.5fib618 = lowestLow + (highestHigh - lowestLow) * 0.618fib786 = lowestLow + (highestHigh - lowestLow) * 0.786fib100 = highestHighfib1618 = highestHigh + (highestHigh - lowestLow) * 0.618 // Extension 1.618fib2618 = highestHigh + (highestHigh - lowestLow) * 1.618 // Extension 2.618// Tracer les niveaux de Fibonacci et extensions sans étiquettesline.new(bar_index[1], fib0, bar_index, fib0, color=color.blue, width=2, style=line.style_solid)line.new(bar_index[1], fib236, bar_index, fib236, color=color.blue, width=1, style=line.style_dashed)line.new(bar_index[1], fib382, bar_index, fib382, color=color.blue, width=1, style=line.style_dashed)line.new(bar_index[1], fib50, bar_index, fib50, color=color.red, width=2, style=line.style_solid) // Niveaux importants en rougeline.new(bar_index[1], fib618, bar_index, fib618, color=color.green, width=2, style=line.style_solid) // Niveaux importants en vertline.new(bar_index[1], fib786, bar_index, fib786, color=color.blue, width=1, style=line.style_dashed)line.new(bar_index[1], fib100, bar_index, fib100, color=color.blue, width=2, style=line.style_solid)line.new(bar_index[1], fib1618, bar_index, fib1618, color=color.yellow, width=2, style=line.style_dotted) // Extension 1.618 en jauneline.new(bar_index[1], fib2618, bar_index, fib2618, color=color.yellow, width=2, style=line.style_dotted) // Extension 2.618 en jaune// Signaux d'achat et de vente basés sur le RSI, les niveaux de Fibonacci et les conditions de surachat/surventebuySignal = (rsiValue < rsiOversold and rsiBelow30_2Bars and close <= fib618) // Achat à 61.8% de Fibonacci, RSI < 20 et RSI en dessous de 30 pendant 30 minutessellSignal = (rsiValue > rsiOverbought and rsiAbove70_2Bars and close >= fib50) // Vente à 50% de Fibonacci, RSI > 75 et RSI au-dessus de 70 pendant 30 minutes// Tracer les signauxplotshape(series=buySignal, title='Buy Signal', location=location.belowbar, color=color.green, style=shape.labelup, text='BUY')plotshape(series=sellSignal, title='Sell Signal', location=location.abovebar, color=color.red, style=shape.labeldown, text='SELL')// Affichage du RSI en bas de l'écranhline(rsiOverbought, 'Overbought', color=color.red)hline(rsiOversold, 'Oversold', color=color.green)plot(rsiValue, 'RSI', color=color.blue)

更好的私用方针,期货自动化来回风物与股票自动化风物在星球

本站仅提供存储作事,扫数履行均由用户发布,如发现存害或侵权履行,请点击举报。
------
股票分析