This is a price pointer that moves directionally with a candle with a Horizontal Blue Line to the right of the current candle.
Indicator Link: http://tos.mx/Rmiy7Xy
Indicator Code:
Indicator Link: http://tos.mx/Rmiy7Xy
Indicator Code:
Ruby:
##AsGoodAsItGets-PricePointer
declare upper;
input PriceMarker = yes; #Hint PriceMarker: Shows a line pointing to the current price level.
def closeplot = if !IsNaN(close) and IsNaN(close[-1]) then close else closeplot[1];
plot pricepointer = if PriceMarker and IsNaN(close) then closeplot else Double.NaN;
pricepointer.SetDefaultColor(Color.CYAN);
pricepointer.SetLineWeight(3);
#End

Last edited by a moderator: