samlau
October 31, 2020, 6:10am
1
My current chart buy/sell arrow is too small. I want to change a bigger arrow. Please let me know how to change the size of arrow. Appreciate your help.
Read this
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 …
samlau
October 31, 2020, 6:32pm
3
Thanks awilson.
sometimes I find the trading arrows hard to see, so I want to change it's size and color.
But I don't know how to do .
system
Closed
February 8, 2021, 6:32pm
4
This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.