How to plot lowest low out of the last 5 candles.


Category:
0
0

Hi Pete,

Can you pls help me create a script similar to this script below to plot the lowest low from the last 5 candles. Thank you.

Example

plot ClosingPriceForHighestHigh = GetValue(close, GetMaxValueOffset(high, 12), 12);

The example script plots the close price of a bar that contains the highest high price among the last twelve bars.

Marked as spam
Posted by (Questions: 8, Answers: 2)
Asked on February 9, 2020 10:00 pm
117 views
0
Private answer

plot lowestLowInFive = Lowest(low, 5);

Marked as spam
Posted by (Questions: 37, Answers: 4084)
Answered on February 10, 2020 8:06 am