美股指标大全

可检索的 282 项美股指标参考 —— 技术、基本面与情绪三大类,含公式、默认参数与解读要点。

282 项中匹配 282 项

Volatility · 10

Average True Range (absolute value), representing volatility/risk.

公式
TR=max(H−L,|H−Cₚᵣₑᵥ|,|L−Cₚᵣₑᵥ|), ATR=Wilder smoothing(TR,14)
如何解读

Used for stop-loss (e.g. 2×ATR) and position sizing; does not indicate direction.

输出overlay/volatility输入high, low, close
核心

MA as the middle band, standard deviation as the bandwidth.

公式
Mid=MA(C,20), Upper/Lower=Mid±2σ
如何解读

Narrowing bands (squeeze) signal an impending move; price riding the upper band = strength.

输出overlay/volatility输入closeBBANDS默认参数{"period":20,"stddev":2}
进阶

Relative band width, quantifying volatility and squeezes.

公式
BBW=(Upper−Lower)/Mid
如何解读

Historical lows = squeeze (often precedes a big move); sharp expansion = breakout.

输出overlay/volatility输入close

Price's relative position within the bands (0=lower band, 1=upper band).

公式
%B=(C−Lower)/(Upper−Lower)
如何解读

>1 breaks above the upper band (overbought), <0 breaks below the lower band (oversold).

输出overlay/volatility输入close

Uses the rate of change in the high-low spread to measure volatility expansion/contraction.

公式
(EMA(H−L,10)−its value n periods ago)/its value n periods ago×100
如何解读

A sharp rise = surging volatility (top panic/breakout); a slow decline = settling into calm.

输出overlay/volatility输入high, low

A channel formed by recent highs and lows, the core of the Turtle method.

公式
Upper=n-high, Lower=n-low, Mid=(Upper+Lower)/2, n=20
如何解读

A new n-period high = buy, a new low = sell.

输出overlay输入high, low

Annualized volatility based on historical returns.

公式
r=ln(C/Cₚᵣₑᵥ), HV=Std(r,n)×√252
如何解读

Compared with implied volatility (IV) to judge whether options are cheap or expensive.

输出overlay/volatility输入close

A trend channel with an EMA midline + ATR bandwidth.

公式
Mid=EMA(C,20), Upper/Lower=Mid±2×ATR(10)
如何解读

Breaking above the upper band = strength; Bollinger Bands contracting inside the KC = squeeze (TTM Squeeze).

输出overlay输入high, low, close
专业

The dispersion of price relative to its mean.

公式
σ=√(Σ(Cᵢ−MA)²/n), n=20
如何解读

Rising σ = increasing volatility and rising risk.

输出overlay/volatility输入closeSTDDEV

Expected volatility derived from S&P 500 option implied volatility (the "fear gauge").

公式
Annualized by weighting near-/next-month SPX option IV per the CBOE method
如何解读

>30 panic, <15 calm; usually inverse to the stock index.

输出overlay/volatility

Trend · 21

Weighted moving average that weights recent prices more heavily, more responsive than SMA.

公式
EMA = C×k + EMAₚᵣₑᵥ×(1−k), k=2/(n+1)
如何解读

Used like SMA but reacts faster with less lag; commonly 12/26-day.

输出overlay输入closeEMA默认参数{"periods":[12,26]}

Difference between two EMAs, measuring trend direction, strength and momentum shifts.

公式
DIF=EMA(C,12)−EMA(C,26); DEA=EMA(DIF,9); Histogram=(DIF−DEA)×2 (×2 is the Chinese TongDaXin/THS convention; international platforms StockCharts/TradingView do not multiply by 2, i.e. DIF−DEA)
如何解读

DIF crossing above DEA = golden cross (buy), crossing below = death cross (sell); new price high while DIF does not = top divergence (bearish).

输出oscillator输入closeMACD默认参数{"fast":12,"slow":26,"signal":9}
核心

Arithmetic mean of the last n closes, smoothing price and identifying trend direction.

公式
SMA = (C₁+…+Cₙ)/n
如何解读

Price above the MA is bullish, below is bearish; commonly 5/10/20/60/120/250-day; short MA crossing above long MA = golden cross (buy), crossing below = death cross (sell).

输出overlay输入closeSMA默认参数{"periods":[5,10,20,60,120,250]}

DMI gauges direction, ADX gauges trend strength (directionless).

公式
+DI=100×EMA(+DM)/ATR, −DI=100×EMA(−DM)/ATR, DX=100×|+DI−−DI|/(+DI+−DI), ADX=EMA(DX,14)
如何解读

+DI crossing above −DI = buy; ADX>25 strong trend, <20 ranging.

输出overlay输入high, low, closeADX默认参数{"period":14}

Displays support/resistance, trend and momentum in a single chart.

公式
Conversion Line=(9-high+9-low)/2; Base Line=(26-high+26-low)/2; Leading Span A=(Conversion+Base)/2 shifted forward 26; Leading Span B=(52-high+52-low)/2 shifted forward 26; Lagging Span=C shifted back 26
如何解读

Price above the cloud is bullish, below is bearish; Conversion crossing above Base = buy; a thick cloud = strong support/resistance.

输出overlay输入high, low, close
进阶

ATR-based trend-following line giving clear long/short and stop-loss levels.

公式
Upper=HL2+m×ATR, Lower=HL2−m×ATR, commonly (10,3)
如何解读

Price above the line = long (green), below = short (red); a flip is the signal, usable as a trailing stop.

输出overlay输入high, low, close

Gaussian-weighted windowed MA balancing low lag and smoothness.

公式
Normalized Gaussian-weighted sum, commonly (9,0.85,6)
如何解读

Larger offset = more sensitive; crossovers/turns serve as signals.

输出overlay输入close

Measures the number of periods since the last high/low to judge trend freshness.

公式
Up=(n−periods since the n-period high)/n×100, Down likewise, n=25; Oscillator=Up−Down
如何解读

Up>70 and Down<30 = strong uptrend; Up crossing above Down = bullish.

输出oscillator输入high, lowAROON默认参数{"period":25}

A combination of multiple EMAs to offset lag.

公式
DEMA=2×EMA−EMA(EMA); TEMA=3×EMA1−3×EMA2+EMA3
如何解读

Lag markedly lower than a plain EMA, suited to fast trend-following.

输出overlay输入close

Short-term (3–15) and long-term (30–60) EMA clusters, observing the combined force of short/long-term traders.

公式
Short group EMA(3,5,8,10,12,15), long group EMA(30,35,40,45,50,60)
如何解读

The short cluster crossing above and diverging from the long cluster = uptrend confirmed; intertwined = ranging.

输出overlay输入close
专业

An extremely low-lag, highly smooth MA.

公式
HMA=WMA(2×WMA(C,n/2)−WMA(C,n), √n)
如何解读

Turns earlier than traditional MAs; rising is bullish, falling is bearish.

输出overlay输入close

Auto-adjusts smoothness by market efficiency — sensitive in trends, sluggish in ranges.

公式
ER=|net change|/Σ|period-to-period change|, SC=[ER×(2/3−2/31)+2/31]², KAMA=KAMAₚᵣₑᵥ+SC×(C−KAMAₚᵣₑᵥ)
如何解读

More noise-resistant in choppy markets; crossovers or turns serve as signals.

输出overlay输入close
专业

A channel set a fixed percentage above and below a MA.

公式
Upper=MA×(1+p%), Lower=MA×(1−p%), p = 1–5%
如何解读

Touching the upper band is overbought, touching the lower band is oversold.

输出overlay输入close

Stop And Reverse, a stop-loss/reversal point that follows the trend.

公式
SAR=SARₚᵣₑᵥ+AF×(EP−SARₚᵣₑᵥ), AF starts at 0.02 and increases 0.02 each new extreme, capped at 0.20
如何解读

Dots below the candles = uptrend (hold long), jumping above = turn short; commonly used as a trailing stop.

输出overlay输入high, lowSAR

The percentage version of MACD, convenient for cross-asset comparison.

公式
PPO=(EMA12−EMA26)/EMA26×100, signal=EMA(PPO,9)
如何解读

Used like MACD, but allows comparing stocks at different price levels.

输出oscillator输入close

Wilder's recursive smoothed MA (used internally by RSI/ATR).

公式
SMMA=(SMMAₚᵣₑᵥ×(n−1)+C)/n
如何解读

Smoother with more lag, suited to medium-to-long-term.

输出overlay输入close

Triple-EMA smoothed then taking the rate of change, a noise-filtered trend/momentum indicator.

公式
EMA1→EMA2→EMA3, then TRIX=(EMA3−EMA3ₚᵣₑᵥ)/EMA3ₚᵣₑᵥ×100, n=15
如何解读

Crossing the zero line or signal line = buy; suited to medium-to-long-term.

输出oscillator输入closeTRIX

Uses CMO to measure momentum and adaptively adjust EMA speed.

公式
VIDYA=C×k|CMO|+VIDYAₚᵣₑᵥ×(1−k|CMO|)
如何解读

Sensitive in high volatility, smooth in calm markets.

输出overlay输入close
专业

Captures the start and direction of a trend via the relationship between highs and lows.

公式
+VI=Σ(+VM)/Σ(TR), −VI=Σ(−VM)/Σ(TR), n=14
如何解读

+VI crossing above −VI = bullish, vice versa bearish; wider separation = stronger trend.

输出oscillator输入high, low, close

Linearly weighted, with the most recent period carrying the greatest weight.

公式
WMA = (n·Cₙ+(n−1)·Cₙ₋₁+…+1·C₁)/[n(n+1)/2]
如何解读

Lag between SMA and EMA; commonly a building block for HMA and others.

输出overlay输入closeWMA

De-lags the price then takes an EMA, nearly eliminating delay.

公式
lag=(n−1)/2, ZLEMA=EMA(C+(C−C₍ₜ₋ₗₐ𝓰₎),n)
如何解读

Turns extremely early, needs to be paired with filter conditions.

输出overlay输入close

Momentum/Oscillator · 20

Measures the relative strength of upward vs downward moves.

公式
RS = mean gain / mean loss (Wilder smoothing); RSI = 100 − 100/(1+RS); period n=14
如何解读

>70 overbought, <30 oversold; 50 is the bull/bear divide; new high unconfirmed = top divergence.

输出oscillator输入close

Measures overbought/oversold by the close's position within the recent high-low range.

公式
RSV=(C−n-low)/(n-high−n-low)×100, K=⅔Kₚᵣₑᵥ+⅓RSV, D=⅔Dₚᵣₑᵥ+⅓K, J=3K−2D; international Stochastic convention: %K=RSV, %D=SMA(%K,3), Slow/Full versions smooth once more (using SMA rather than the recursion above)
如何解读

>80 overbought, <20 oversold; K crossing above D = golden cross; J overshooting the bounds signals reversal.

输出oscillator输入high, low, closeSTOCH默认参数{"k":9,"d":3,"j":true}

Measures how far price deviates from its statistical mean.

公式
CCI=(HLC3−MA(HLC3,20))/(0.015×mean absolute deviation)
如何解读

>+100 strong/overbought, <−100 weak/oversold.

输出oscillator输入high, low, close

Applies the Stochastic to RSI, making it more sensitive.

公式
StochRSI=(RSI−n-period RSI low)/(n-period RSI high−n-period RSI low)
如何解读

>80 overbought, <20 oversold; earlier signals but more false ones.

输出oscillator输入closeSTOCHRSI

Uses the fast/slow MA difference of the median price to measure market momentum.

公式
AO=SMA(HL2,5)−SMA(HL2,34), shown as a histogram
如何解读

Crossing above zero = momentum turns bullish; "saucer" and "twin peaks" are classic buy/sell signals; commonly paired with Alligator/Fractals.

输出oscillator输入high, low(pandas_ta: ao)默认参数{"fast":5,"slow":34}

Uses the difference between up and down momentum to measure pure momentum.

公式
CMO=100×(SU−SD)/(SU+SD)
如何解读

−100~+100; +50 overbought, −50 oversold.

输出oscillator输入close
专业

A short-term mean-reversion indicator combining "price RSI + streak RSI + percent-rank of returns".

公式
CRSI=[RSI(C,3)+RSI(Streak,2)+PercentRank(return,100)]/3
如何解读

<10 extremely oversold (buy), >90 extremely overbought (sell).

输出oscillator输入close

A long-term (monthly) bottom-signal indicator.

公式
WMA(ROC14+ROC11,10) (monthly)
如何解读

Turning up from below the zero line = long-term buy; used for index timing.

输出oscillator输入close

Price fluctuation with the trend removed, used to identify cycle length.

公式
DPO=C₍ₜ₋(n/2+1)₎−MA(C,n)
如何解读

Peak-to-trough spacing estimates the cycle; does not reflect the current trend.

输出oscillator输入close

An adaptive version of RSI that changes its lookback period by volatility.

公式
n_dynamic=14/(recent σ/long-term σ), then compute RSI
如何解读

Used like RSI, reacts faster in high volatility.

输出oscillator输入close

"Gaussianizes" the price distribution to amplify turning points.

公式
Fisher=½ln((1+x)/(1−x)), x is the normalized price position
如何解读

Sharp peaks/troughs + a cross of the trigger line = reversal.

输出oscillator输入high, low

Weighted momentum combining ROC across four periods.

公式
KST=ROCMA1×1+ROCMA2×2+ROCMA3×3+ROCMA4×4, signal=9-period MA of KST
如何解读

Crossing the signal line/crossing zero = medium-to-long-term signal.

输出oscillator输入close
专业

The absolute difference between the current price and the price n periods ago.

公式
MTM=C−C n periods ago
如何解读

>0 upward momentum, <0 downward momentum; zero crosses and divergence serve as signals.

输出oscillator输入closeMOM

A generalization of RSI, replacing "vs yesterday" with "vs n days ago".

公式
Same as RSI, but compute gains/losses from C−C₍ₜ₋m₎ then smooth
如何解读

>70 overbought, <30 oversold; smoother than RSI.

输出oscillator输入close
专业

The percentage change relative to the price n periods ago.

公式
ROC=(C−C n periods ago)/C n periods ago×100
如何解读

Crossing the zero line = momentum reversal; extremes signal overbought/oversold.

输出oscillator输入close

Measures trend vigor based on "the close tending to exceed the open in uptrends".

公式
RVI=weighted(C−O)/weighted(H−L), signal line is its 4-period symmetric weighting
如何解读

Crossing above the signal line = buy; divergence warns of reversal.

输出oscillator输入open, high, low, close

A Stochastic refinement, using the close relative to the range's "midpoint".

公式
SMI=100×EMA(EMA(C−midpoint))/(½EMA(EMA(range high-low spread)))
如何解读

>+40 overbought, <−40 oversold; less noise.

输出oscillator输入high, low, close

Double-EMA smoothing of momentum, then normalized.

公式
TSI=100×EMA(EMA(ΔC,25),13)/EMA(EMA(|ΔC|,25),13)
如何解读

The zero line divides bull/bear; crossing above the signal line = buy.

输出oscillator输入close

Combines buying pressure across short, medium and long periods to reduce false divergences.

公式
UO=100×(4×Avg7+2×Avg14+1×Avg28)/7
如何解读

>70 overbought, <30 oversold; a classic bullish divergence + breakout is a buy point.

输出oscillator输入high, low, closeULTOSC

The close's position within the recent range (a mirror of Stochastic).

公式
%R=(n-high−C)/(n-high−n-low)×(−100), n=14
如何解读

−20~0 overbought, −100~−80 oversold.

输出oscillator输入high, low, closeWILLR默认参数{"period":14}

Volume · 15

核心

The most basic volume data.

公式
Current-period volume; overlay VMA=MA(V,n)
如何解读

Rising on expanding volume = healthy; rising on shrinking volume = weak momentum; breakouts require volume.

输出volume输入volume

Volume-weighted average traded price, an institutional cost benchmark.

公式
VWAP=Σ(HLC3ᵢ×Vᵢ)/ΣVᵢ (resets daily)
如何解读

Price above VWAP is bullish; acts as intraday support/resistance.

输出volume输入high, low, close, volume

Volume-weighted momentum oscillator (RSI-style, incorporating volume).

公式
MF=HLC3×V split into positive/negative, MFI=100−100/(1+positive MF/negative MF), n=14
如何解读

>80 overbought, <20 oversold; more reliable with volume.

输出volume输入high, low, close, volume
进阶

Uses cumulative volume direction to measure net buying/selling inflow.

公式
Up day OBV+V, down day OBV−V
如何解读

Moving with price = volume-price confirmation; price up while OBV does not = divergence (warning).

输出volume输入close, volume

Combines the close's position within the range with volume to gauge accumulation/distribution.

公式
MFM=((C−L)−(H−C))/(H−L), ADL=ADLₚᵣₑᵥ+MFM×V
如何解读

Rising = capital inflow; price up while ADL falls = distribution divergence.

输出volume输入high, low, close, volumeAD

The momentum version of the A/D Line (accumulation/distribution) — the fast/slow MA difference of volume money flow.

公式
CHO=EMA(ADL,3)−EMA(ADL,10)
如何解读

Crossing above zero = money-flow momentum turns positive (bullish); divergence with price warns; completes the A/D Line—CMF—Chaikin Oscillator volume trio.

输出volume输入high, low, close, volumeADOSC

A range-bound version of A/D.

公式
CMF=Σ(MFM×V)/ΣV, n=20
如何解读

>0 buying pressure dominates, <0 selling pressure dominates; >0.05 bullish, <−0.05 bearish.

输出volume输入high, low, close, volume

Measures the "ease" of a price rise/fall.

公式
EMV=(HL2−HL2ₚᵣₑᵥ)/[(V/scaling)/(H−L)], take a 14-period MA
如何解读

>0 and rising = easy advance; near 0 = stalling on high volume.

输出volume输入high, low, volume
专业

Combines the direction and magnitude of price change with volume to measure bull/bear power.

公式
FI=EMA((C−Cₚᵣₑᵥ)×V,13)
如何解读

Crossing above zero = buyers dominate; divergence warns of reversal.

输出volume输入close, volume

Combines volume-price with trend direction to anticipate reversals.

公式
KVO=EMA(VF,34)−EMA(VF,55), signal=EMA(KVO,13)
如何解读

Crossing above the signal line = buy; divergence + zero cross signals a medium-term reversal.

输出volume输入high, low, close, volume

Accumulate price changes on high-volume days/low-volume days respectively.

公式
Volume up updates PVI, volume down updates NVI, accumulated by close return
如何解读

NVI rising on low-volume days = "smart money" building positions (a bull-market sign).

输出volume输入close, volume

An OBV refinement, accumulating volume weighted by the close's "percentage" change.

公式
PVT=PVTₚᵣₑᵥ+V×(C−Cₚᵣₑᵥ)/Cₚᵣₑᵥ
如何解读

Moving with price = volume-price confirmation; divergence warns.

输出volume输入close, volume

The difference between two volume MAs (a volume MACD).

公式
VO=(EMA(V,12)−EMA(V,26))/EMA(V,26)×100
如何解读

>0 and rising = strengthening volume; confirms breakouts.

输出volume输入volume

Tallies the volume distribution across price levels.

公式
Volume within the range binned by price; POC=price level with the most volume; VA=value area holding about 70% of volume
如何解读

The POC and the upper/lower edges of the value area are strong support/resistance; HVN consolidates, LVN is easily traversed quickly.

输出volume输入volume

The speed of volume expansion/contraction.

公式
VROC=(V−V n periods ago)/V n periods ago×100
如何解读

A sudden spike = volume burst (breakout/reversal); sustained weakness = thin trading.

输出volume输入volume

Patterns/Candlesticks · 5

Examples: Triangles (symmetrical/ascending/descending), Flag/Pennant (target≈flagpole height), Wedge, Rectangle, Cup & Handle.

公式
converging/parallel trend lines and break direction; target measured from pattern height
如何解读

Volume shrinks during consolidation and expands on the break; breakouts in the original trend direction have a higher win rate.

输出pattern输入high, low, close

Examples: Head & Shoulders Top/Bottom (neckline break, target≈head-to-neckline height), Double Top (M)/Double Bottom (W), Triple Top/Bottom, Rounding Top/Bottom, V-shape.

公式
peak-trough geometry + neckline break; target=projected pattern height
如何解读

Neckline break + volume = confirmation; trade failed patterns in reverse.

输出pattern输入high, low, close

Examples: Hammer/Hanging Man (long lower shadow), Inverted Hammer/Shooting Star (long upper shadow), Bullish/Bearish Engulfing (later body engulfs prior), Doji (open≈close), Dark Cloud Cover/Piercing, Harami.

公式
pattern matching on relative OHLC sizes and body/shadow ratios (CDLHAMMER, CDLENGULFING)
如何解读

Requires confirmation by top/bottom location and trend; more reliable on expanding volume.

输出pattern输入open, high, low, close

Examples: Morning Star (bottom, bullish)/Evening Star (top, bearish), Three White Soldiers/Three Black Crows, Three Inside Up/Down, Three Outside Up/Down.

公式
matching the direction, size and overlap of three candles (CDLMORNINGSTAR, CDL3WHITESOLDIERS)
如何解读

More reliable than single candles, especially at key price levels.

输出pattern输入open, high, low, close
专业

A simple geometric pattern identifying local highs and lows.

公式
Up fractal=a bar whose H is higher than the 2 bars on each side; down fractal=a bar whose L is lower than the 2 bars on each side
如何解读

Marks micro support/resistance; commonly paired with Alligator.

输出pattern输入high, low

Support/Resistance & Structure · 7

Uses Fibonacci ratios to mark potential support/resistance within a pullback.

公式
Level=High−(High−Low)×ratio, ratio = 0.236/0.382/0.5/0.618/0.786
如何解读

Pullbacks to 0.382/0.5/0.618 often find support; 0.618 draws the most attention.

输出overlay

Price vacuum between adjacent candles, reflecting abrupt sentiment shifts.

公式
Gap up: today's L>yesterday's H; gap down: today's H<yesterday's L
如何解读

Breakaway gaps confirm a trend and rarely fill; exhaustion gaps signal the end; most common gaps get filled.

输出overlay输入high, low
进阶

Intraday support/resistance computed from the prior period's OHLC, common intraday.

公式
PP=(H+L+C)ₚᵣₑᵥ/3, R1=2PP−Lₚᵣₑᵥ, S1=2PP−Hₚᵣₑᵥ
如何解读

Price above PP is bullish; breaks of R/S often accelerate.

输出overlay输入high, low, close

Lines connecting highs/lows depict direction and slope, copied in parallel to form a channel.

公式
Fit ≥2 lows (uptrend) or highs (downtrend), channel=trend line+parallel line
如何解读

A valid break below/above = possible trend reversal; sell high and buy low within the channel.

输出overlay输入high, low

Three parallel tracks drawn from three pivot points.

公式
Median line=A pointing to the midpoint of BC; upper/lower tines pass through B, C and parallel the median
如何解读

Touching the median often reverts; touching the outer tines often reverses.

输出overlay

Projects target levels after a breakout.

公式
Based on A-B-C: target=C+(B−A)×ratio, ratio 1.272/1.618/2.0/2.618
如何解读

1.618 and 2.618 are common take-profit/resistance targets.

输出overlay

Filters out minor fluctuations and connects significant high/low pivots.

公式
Draws a new pivot only when price reverses ≥ a set % or point amount
如何解读

Does not predict and repaints; used to identify wave structure and draw trend lines and Fibonacci.

输出overlay输入high, low

Composite/Other · 7

Three smoothed MAs (Jaw/Teeth/Lips) to judge whether the trend is sleeping or feeding.

公式
Jaw=SMMA(HL2,13) shifted forward 8; Teeth=SMMA(HL2,8) shifted forward 5; Lips=SMMA(HL2,5) shifted forward 3
如何解读

Intertwined = sleeping (ranging); opening up with Lips>Teeth>Jaw = uptrend.

输出oscillator输入high, low

Measures how far price deviates from its linear-regression forecast value.

公式
CFO=(C−regression forecast value)/C×100
如何解读

>0 stronger, <0 weaker; sustained deviation signals trend strength or mean-reversion pressure.

输出oscillator输入close

Measures "trend vs ranging" (directionless).

公式
CHOP=100×log₁₀(ΣATR(1)/(n-high−n-low))/log₁₀(n), n=14
如何解读

>61.8 ranging, <38.2 strong trend.

输出oscillator输入high, low, close

艾尔德力度指标Bull/Bear Power

专业

Separately measures bull and bear power relative to the EMA.

公式
Bull=H−EMA(C,13), Bear=L−EMA(C,13)
如何解读

In an uptrend, Bear<0 but recovering = buy point; divergence warns of reversal.

输出oscillator输入high, low, close
专业

Identifies reversals via the expansion/contraction of the high-low range (directionless).

公式
Ratio=EMA(H−L,9)/EMA(EMA(H−L,9),9), MI=Σ₂₅(Ratio)
如何解读

Reversal bulge: rising above 27 then falling below 26.5 = possible reversal.

输出oscillator输入high, low

Compares actual travel against a random walk to judge whether a trend is real.

公式
RWI_H=(H−L n periods ago)/(ATR√n), RWI_L=(H n periods ago−L)/(ATR√n)
如何解读

RWI_H>1 = significant uptrend (non-random); both <1 = no trend.

输出oscillator输入high, low, close

Measures trend strength by price deviation relative to a MA.

公式
TII=100×Σpositive deviations/(Σpositive deviations+Σnegative deviations)
如何解读

>80 strong uptrend, <20 strong downtrend; near 50 no trend.

输出oscillator输入close

仅为参考元数据 —— 公开、通用的指标定义。非投资建议。