Lines at current price and visible High and Visible Low on chart?

Is there any easy way to get lines at current price, high and low on the chart similar to the image shown on Amibroker chart without writing my own AFL for the same? Please advise.

1 Like

Any reason why? It would be reasonable to add this when most if not all things on chart are AFL.

And these are just 3 plot statements.

Plot( LastValue( C ), "", colorYellow );
Plot( HighestVisibleValue( H ), "", colorGreen);
Plot( LowestVisibleValue( L ), "", colorRed);
1 Like

Thanks for the simple solution. Not sure, why I wasnt thinking in these lines.