//@version=5
indicator("Basic Variables", overlay=true)
var int myInteger = 105
var float myFloat = 105.384
var bool myBoolean = true
plot(myInteger, title="Integer Value", color=color.red)
plot(myFloat, title="Float Value", color=color.green)
//@version=5
indicator("Comments Example", overlay=true)
// This is a single line comment
plot(close, title="Close Price", color=color.blue)