High/Low bandsGives good idea about trend.
In last 100 days the lowest price was this.
In last 100 days the highest price was this.
Price makes new 100 days high! (uptrend)
Cari dalam skrip untuk "high low"
High-Low Fib Zones with Buy SignalThis is to be used on weekly time frame only. It is recommendation for buy in between the zone and expected target is known. 4-10 points is your stop loss and target is as you see in the indication. Changing the time frame will give incorrect reading,
High Low priceThis indicator automatically shows the close price on the chart.
The highest and lowest close prices for the last 20 days are set by default but can be changed.
Highs Lows (with offset) + Median with ATR bandsScript shows Highest and Lowest values (default 10) for given bars back with possible offset on time assis (default 3) with their Median Line + ATR bands around it (no offset here).
High/Low Support FilterPreliminary version of a long support filter for use in future strategies.
V28: Release
eMOD.HiLoChannel [enigma_trader]High / Low Channel Indicator for the last 'Period' bars
Version: 1.0.0
Created: 2018.12.17
HIGH LOW by KIVANC fr3762Indicator plots the highest and lowest price levels in a certain period of user defined length EXCEPT LAST BAR!
the default value of bars counting back is 50 which can be optimized.
High_Low_ProjectionHigh Low Projections of daily/weekly/quarterly/yearly price movement. Dark/night mode version. Green when broken through to upside, red when broken through to bottom side.
High Low Bollinger Bands Better than Bollinger Bands for finding extreme points timed by an oscillator where the price is statistically likely to stay inside the boundaries.
Good for setting credit spreads such as call and put vertical spreads.
Algo V4 – Predictive SMC//@version=5
indicator("Algo V4 – Predictive SMC", overlay=true)
// — Inputs —
emaLen = input.int(20, "EMA Length", minval=1)
structureLen = input.int(20, "Structure Lookback", minval=5)
showFVG = input.bool(true, "Show Fair Value Gaps")
showZones = input.bool(true, "Show Supply/Demand Zones")
// — EMA Trend Filter —
ema = ta.ema(close, emaLen)
plot(ema, color=color.new(color.gray, 70), title="EMA")
// — Structure Highs/Lows —
swingHigh = ta.highest(high, structureLen)
swingLow = ta.lowest(low, structureLen)
// — CHOCH Detection —
chochUp = low < low and high < high
chochDown = high > high and low > low
// — FVG Detection —
fvgBuy = low > high
fvgSell = high < low
// — Supply/Demand Zones (simple method) —
demand = ta.lowest(low, 3)
supply = ta.highest(high, 3)
// — Plot Zones —
if showZones
line.new(bar_index - 3, demand, bar_index, demand, color=color.new(color.green, 80), extend=extend.none)
line.new(bar_index - 3, supply, bar_index, supply, color=color.new(color.red, 80), extend=extend.none)
// — Plot FVG Boxes —
if showFVG
if fvgBuy
box.new(bar_index , high , bar_index, low, bgcolor=color.new(color.green, 90), border_color=color.green)
if fvgSell
box.new(bar_index , low , bar_index, high, bgcolor=color.new(color.red, 90), border_color=color.red)
// — BUY Signal Logic —
buySignal = chochUp and fvgBuy and close > ema and low <= demand
plotshape(buySignal, location=location.belowbar, style=shape.triangleup, color=color.lime, size=size.small, title="Buy Arrow")
// — SELL Signal Logic —
sellSignal = chochDown and fvgSell and close < ema and high >= supply
plotshape(sellSignal, location=location.abovebar, style=shape.triangledown, color=color.red, size=size.small, title="Sell Arrow")