Buy / Sell Arrows not showing up on price Chart

#1
Hi,

I am trying to show Buy / Sell arrows on the price chart but instead of showing up on the price chart they show up below the volume chart. Please see the attached pic.

http://i.imgur.com/w6vfvf1.png

AFL is shown below:

Code:
SetChartOptions( 0, chartShowArrows | chartShowDates );
Buy = H>REF(H,-1);
Sell = L<REF(L,-1);
//Buy = ExRem(Buy,Sell);
//Sell = ExRem(Sell,Buy);
shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, Low, High ) );
Plot( V, "Better Volume", VolColor, styleHistogram, Null, Null, 0, 0, width = -60 );
Plot( MA( V, MaPeriod ), "MA", ColorBlack, styleLine, Null, Null, 0, 1, width = -20 );
 
#2
Hi,

I am trying to show Buy / Sell arrows on the price chart but instead of showing up on the price chart they show up below the volume chart. Please see the attached pic.

http://i.imgur.com/w6vfvf1.png

AFL is shown below:

Code:
SetChartOptions( 0, chartShowArrows | chartShowDates );
Buy = H>REF(H,-1);
Sell = L<REF(L,-1);
//Buy = ExRem(Buy,Sell);
//Sell = ExRem(Sell,Buy);
shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, Low, High ) );
Plot( V, "Better Volume", VolColor, styleHistogram, Null, Null, 0, 0, width = -60 );
Plot( MA( V, MaPeriod ), "MA", ColorBlack, styleLine, Null, Null, 0, 1, width = -20 );

If you use Volume Chart, How can you show Buy / Sell arrows on Price Chart ?

Only you use Price Chart, then you can see & show Buy / Sell arrows on Price Chart.