唯一可靠的熊市指标...
你想要吗?首先了解它适用于水平,如果水平被突破并且是熊市(SMA333),它会让您卖出(做空或卖出)。
这是为了了解 1/2 小时内的水平,是否突破它们
nh = ta.highest(收盘价,范围)
nb = ta.lowest(收盘价,范围)
之后您需要知道价格范围的值
范围 = nh-nb
在我们配置您希望它中断的程度之后,这个值 1 最终是好的
SU = input.int(1, "突破值")
rs = input.int(1,"突破范围")
最后是突破,如果我们低于最低价格加上价格范围的 1/4,并且趋势正在下降(p33 是一个布尔值,1 或 0,真或假,那么如果我们长达 33 分钟)
(close < nh[sup]-(ranges[rs]/4) and p33==false))
这样,如果您处于熊市,您就知道它何时突破(使用 sma 333 超过 1 分钟即可知道 bear = sma333-sma333[1]>0? false:true
如果我们处于熊市,熊市就会成为现实
//@版本=6
指标(“级别3”,叠加= true)
范围 = input.int(33,"范围")
nh = ta.highest(收盘价,范围)
nb = ta.lowest(收盘价,范围)
SU = input.int(1, "突破值")
rs = input.int(1,"突破范围")
trend = input.int(13,"趋势研究")
// 为了过滤,我们只计算小的变化,而不是大的变化 (sma)
范围 = nh-nb
//过滤一点
浮动tp=0
如果 (bar_index > 0)
对于 i=0 趋于
mp = 关闭[i]-关闭[i+1]>=0?真:假
dp = math.abs(close[i]-close[i+1])
tp := mp ? tp+dp: tp-dp
p33 = tp<=0?假:真
TP:=0
// 引入99k等心理价位
if ( p33 and close > nb and close < nb+(ranges/4) or (close > nh[sup]+(ranges[rs]/4) and p33))
label.new(bar_index, low, "B", style=label.style_label_up, color=color.green, textcolor=color.white)
Alert("购买可能性!",alert.freq_once_per_bar)
if ( p33==false and close < nh and close > nh-(ranges/4) or (close < nb[sup]-(ranges[rs]/4) and p33==false))
更多内容在我的文章中