Plot Character And Text
FXC911 – Forex & Crypto News & Insights
Goals
Pine Script Code
//@version=5
indicator("Plot Char", overlay = true)
bullish = close > open
bearish = close < open
plotchar(bullish, char = '$', location = location.belowbar, color = color.green, text = "BULLISH", textcolor = color.white, size = size.small)
plotchar(bearish, char = '$', location = location.abovebar, color = color.red , text = "BEARISH", textcolor = color.white, size = size.small)Code Output

Explanation
Keywords
Visit me on:
Last updated