{ # PLDot } variables: PLDot( 0 ), HLC_Avg( 0 ) ; HLC_Avg = ( High + Low + Close ) / 3 ; PLDot = Average( HLC_Avg, 3 )[1] ; Plot1(PLDot,"PLDot") ; { # PLDotP } variables: PLDot( 0 ), HLC_Avg( 0 ) ; HLC_Avg = ( High + Low + Close ) / 3 ; PLDot = Average( HLC_Avg, 3 ) ; Plot1[-1](PLDot,"PLDot") ;