Home/Dovee/Function reference

rising

This bar is higher than the previous bar (or N bars back as a function).

Reference/Language/Language

close rising    rising(series, length)

As English: close rising, volume falling. As a function: rising(close) or rising(close, 3) to require three up bars. falling is the inverse.

Parameters

NameTypeDescription
seriesseriesValue to test. In English form this is the word before rising.
lengthint
default 1
How many bars must each be higher than the last. Default 1.

Return value

boolean

Example

when close rising and bullish
  buy
when close falling
  exit

See also