IsFalling()

View as Markdown

Definition

Evaluates a falling condition which is true when the current value is less than the value of 1 bar ago.

Method Return Value

This method returns true if a falling condition is present; otherwise, false.

Syntax

IsFalling(ISeries\<double\> series)

Parameters

ParameterDescription
seriesAny Series<double> type object such as an indicator, Close, High, Low, etc…

Examples

1protected override void OnBarUpdate()
2{
3 // If the 20 period SMA is falling (in downtrend) go short
4 if (IsFalling(SMA(20)))
5 EnterShort();
6}