0

下面的代码在交易视图范围条形图上绘制蜡烛图,因为平台不提供将条形图 (OHLC) 更改为蜡烛图的选项。下面的代码是一种解决方法,但它不会使打印的最后一个柱(当前柱)成为蜡烛,我不知道如何纠正这个问题。任何帮助表示赞赏。

//@version=4
// Copyright (c) 2020-present, Alex Orekhov (everget)
// Range Candles script may be freely distributed under the terms of the GPL-3.0 license.

study("Range Candles", overlay=true)

bullColor = #095616
bearColor = #ac0011
isBull = close >= open

plotcandle(
 isBull ? open : na,
 isBull ? high : na,
 isBull ? low : na,
 isBull ? close : na,
 title="",
 color=bullColor,
 bordercolor=bullColor,
 wickcolor=#5d606b
 )

 plotcandle(
 isBull ? na : open,
 isBull ? na : high,
 isBull ? na : low,
 isBull ? na : close,
 title="",
 color=bearColor,
 bordercolor=bearColor,
 wickcolor=#5d606b
 )
4

0 回答 0