TradingView
NeoButane
Oct 27, 2020 6:20 AM

Simple Truncation Function 

EUR/USDOANDA

描述

Main utility: legibility in alerts where certain values are not truncated.

It may prove helpful if tostring() is unavailable for use as well.
评论
syrinxflunki
Thanks I needed this..
NeoButane
@syrinxflunki, Of course! I noticed a lot of high quality scripters liked this script, I feel pretty proud of it hahaha

Note: something I had to do as a workaround when using a ternary operator in a series for plot() was to create a hidden plot to reference.

Example:

---

plot(true ? out : na, "Won't work")
plot(out, "Will work", display=display.none, editable=false)

alertcondition(change(time), title="null", message="{{plot("Won't work")}}"

alertcondition(change(time), title="good", message="{{plot("Will work")}}"

---
更多