This is a handy visual aide to keep an eye on TRIN. This upper line is TRIN high and lower line is TRIN low.
#----------------------------------------------------begin code
declare lower;
plot trin_hi = high("$TRIN");
plot trin_lo = low("$TRIN");
AddCloud(trin_hi, trin_lo);
#----------------------------------------------------end code