He was asking about PlotShapes because he doesn't know better.
But based on his picture what he actually wants is smaller stars. Since shapes such as shapeStar can't be made smaller he has to use PlotTextSetFont for that.
BTW, there does exist Code Snippets feature.
period = 20;
m = MA( Close, period );
Buy = Cross( Close, m );
Sell = Cross( m, Close );
Plot( C, "Price", colorDefault, styleCandle );
bi = Barindex();
fvb = FirstVisibleValue( bi );
lvb = LastVisibleValue( bi );
shape_star = "\u2731";
dist = 15;
PlotTextSetFont("", "Symbola", size = 8, lvb, 0, -1 );
for ( i = fvb; i <= lvb; i++ ) {
if ( Buy[i] ) PlotText( shape_star, i, L[i], colorGreen, -1, -dist );
if ( Sell[i] ) PlotText( shape_star, i, H[i], colorRed, -1, dist );
}
Small enough? (Looks like shapeSmallCircle -> Let's go back to PlotShapes. lol)
