Does anyone have a code for a HLC bar chart?
Sorry, but could you be more precise about your query? We can construct price charts with customized bars or even candlesticks, so do you don’t want the “Open” to be visible?
Thank you, that’s what I call “precision” indeed 🙂
The only way to achieve this should be to set the Open the same as the Close value, barchart will be displayed like a “cross”, because we cannot make the Open really invisible:
drawbarchart(close,high,low,close)
return
Hi Nicolas
Your assistance is highly appreciated
could you please help with the code above, how do i add tow variables for negative and positive in this code
Recenthigh = Highest[Period](high)
Recentlow = Lowest[Period](low)
Distance = ((Recenthigh-Recentlow)-0) *1
RETURN Distance