跳到内容
折叠侧栏
BPAX Lab
搜索
个人工具
创建账号
登录
工具
链入页面
相关更改
特殊页面
页面信息
English
中文
查看“Climactic Bar”的源代码
页面
中文
不转换
不转换
简体
繁體
大陆简体
香港繁體
澳門繁體
大马简体
新加坡简体
臺灣正體
阅读
查看源代码
查看历史
更多
阅读
查看源代码
查看历史
←
Climactic Bar
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于这些用户组的用户执行:
管理员
、editor、super-saiyan-1、super-saiyan-2、super-saiyan-3、super-saiyan-blue、super-saiyan-red、flashcard-user、PA老友记管理员
不允许您执行您所请求的操作。
您可以查看和复制此页面的源代码。
''Climatic Bars in Micro-Channels often leads to pauses or PBs that can usually give at least a scalp, especially if it shows up late in a trend, such as leg3 leg4. If it shows early in a trend, it can signal a potential PB, swing trader should sit tight and allow the PBs to do their things first.'' //@version=5 indicator("Climatic Bars", shorttitle="Clx-Bars",overlay = true) //Eliminate climatic bars with extensive tails bar_range = high - low IBS = (close -low) / bar_range inside_bar = high <= high[1] and low >= low[1] bull_breakout = high > high[1] bear_breakout = low < low[1] outside_bar = bull_breakout and bear_breakout bull_climax_bar = IBS > 0.66 and not inside_bar[1] and not outside_bar and (low >= low[1] and low[1] >= low[2] and bull_breakout and (high - high[1] > 3.0 * (low - low[1]))) bear_climax_bar = IBS < 0.33 and not inside_bar[1] and not outside_bar and (high <= high[1] and high[1] <= high[2] and bear_breakout and (low[1] - low > 3.0 * (high[1] - high))) barcolor(bull_climax_bar ? color.green : na) plot(bull_climax_bar ? high + 5 : na, color = color.green, style = plot.style_cross) barcolor(bear_climax_bar ? color.red : na) plot(bear_climax_bar ? low - 5 : na, color = color.red, style = plot.style_cross) [[Category:TradingView]]
返回
Climactic Bar
。