好吧,受够了btc-parkinson-sismographe,面对这个振荡的市场,我根据自己的观察创建了一个指标:btc 喜欢突破阻力并像贵宾犬一样在其范围内回来,所以除了以下之外,我还编写了此行为范围。
这样我们就可以真正知道它何时离开其范围......并返回正常指标。
// 此 Pine Script™ 程式码受 Mozilla 公用授权 2.0 条款的约束(网址为 https://mozilla.org/MPL/2.0/)
// ©杰罗梅霍勒斯
//@版本=6
指标(“等级”,叠加= true)
范围 = input.int(33,"范围")
nh = ta.highest(收盘价,范围)
nb = ta.lowest(收盘价,范围)
范围 = nh-nb
if ( close > nb 且 close < nb+(ranges/4) 或 close > nh+(ranges/4) )
label.new(bar_index, low, "B", style=label.style_label_up, color=color.green, textcolor=color.white)
// 所以如果它接近顶部或它从远处粉碎它的支撑
if ( close < nh 且 close > nh-(ranges/4) 或 close < nb-(ranges/4) )
label.new(bar_index, 高, "S", style=label.style_label_down, color=color.red, textcolor=color.white)
地块(nh)
情节(nb)
绘图(nb+(行/4))
绘图(nh-(范围/4))