Returns the PRT Bands lowest band.
Syntax:
1 |
PRTBANDSDOWN |
Example:
Plot a down arrow above the candlestick when the Close crosses under the lowest band
1 2 3 4 5 6 7 |
a = PRTBandsDown //plot a down arrow above the candle when the Close crosses under the bands if close crosses under a then drawarrowdown(barindex,high+averagetruerange[14]/2) coloured(255,0,0) endif return |