The Last value for the offset index. 0 = currentbar. Same as Close, Value.


- barsAgo (Int32)
- Number of bars ago to return the Last value

Returns the Last bar value for the offset index. 0 = current bar

Not used during manual loop calculations
Examples

Example: plot the close for the current bar in a RealCode Indicator. On a daily bar interval it would be the close today.
CopyVB.NET
Example: plot the close 5 bars ago. On a daily bar interval, it would be the close 5 days ago.
CopyVB.NET

plot = price.last() ' return the current close value

plot = price.last(5) ' return the close 5 bars ago