Ed, Not sure this is what you want, but there's some code in the User's Guide that produces a ribbon:
Plot( Close, "Price", colorBlue, styleCandle ); Plot( 2, /* defines the height of the ribbon in percent of pane width */ "Ribbon", IIf( C>=30, colorGreen, IIf( C<30, colorRed, 0 )), /* choose color */ styleOwnScale|styleArea|styleNoLabel, -0.5, 100 ); Note that I changed the code to show C>=30, etc. If you're looking for something with a stylecloud effect instead there is sample code in the User's Guide for that as well. Wayne --- In [email protected], "ed" <[EMAIL PROTECTED]> wrote: > > I know you people are very intelligent, but this end is a bit slow. > I would like details of a simple formula to show a ribbon etc when the > simple moving average is over 30 Green ribbon and under 30 Red ribbon, > and when it is hoving back and forth over the 30 a grey one on a > weekly chart. > i know this will be easy for some > but not this some one > > tks > > Ed >
