Hi Laura,
It looks like PLOTSYM is from the AstroLib library which is a third party library. I have never used this library function before, so would it be possible to include a small example of what you are hoping to achieve? Apart from that the following example illustrates the use of a text annotation and the '$\Downarrow$' to create an arrow that points down. Alternatively you can also use '$\Upwnarrow$' for an upwards pointing arrow. This example comes from
http://www.exelisvis.com/...xt_annotations.html. Hope this helps!
; Define the data.
temp09 = [28,36,42,47,55,62,63,75,66,47,44,32]
months = [1,2,3,4,5,6,7,8,9,10,11,12]
; Draw the first plot.
p = PLOT(months, temp09, 'r', $
YTITLE='Temperature in $\circ$ Fahrenheit', $
XTITLE='Months', $
TITLE='Average Monthly Temperature', $
THICK=2)
; Add annotations to describe the data.
arrow = TEXT(0.58, 0.64, '$\Downarrow$', /CURRENT)
difftext = TEXT(0.5, 0.62, $
'Greatest $\circ$ F $\Delta$', /CURRENT)