Dear All
AFL for Stochastic crossover.
I need the arrows to be at the exact crossover locations as shown in the sketch.
Also is there any way to increase the arrow size?
AFL for Stochastic crossover.
I need the arrows to be at the exact crossover locations as shown in the sketch.
Also is there any way to increase the arrow size?
Code:
PlotShapes( IIf( Sell, shapeDownTriangle, shapeNone ), colorRed, 0, p1, offset = -15 );
PlotShapes( IIf( Buy, shapeUpTriangle, shapeNone ), colorBlue, 0, p1, Offset = -15 );
Code:
for ( i = 2; i < BarCount; i++ )
{
if ( Buy[i] )
PlotTextSetFont( "C", "Wingdings", size = 30, x = i - 1, y = p1[i], colorGreen, colorDefault, offset = -(size+10) );
if ( Sell[i] )
PlotText( "D", x = i - 2, y = p1[i], colorRed, colorDefault, offset = 10 ); // will use new font too
}
webdings and wingdings codes
Last edited: