PureBytes Links
Trading Reference Links
|
Welcome
Try this // Plot price plot and its moving average
Plot( Close, "Price", colorWhite, styleCandle );
Plot( MA( Close, 20 ), "MAC", colorRed );
// Now plot volume and its moving average using left-hand axis scaling
Plot( Volume , "Volume", colorBlue, styleLeftAxisScale |
styleHistogram | styleThick );
Plot( MA( Volume,15), "MAV", colorLightBlue, styleLeftAxisScale );
Good luck
Dennis
--- In amibroker@xxxx, "antmar65" <antmar65@xxxx> wrote:
> Hi,
> I am a new user of Amibroker
> I want to plot one horizontal line on a graph.
> I try to do it with this formula (to plot a red line that is
> referring to precedent bar's High):
>
> Plot(LastValue(Ref(H,-1)),"H",32,1)
>
> This formula would have to design one horizontal red line, but this
> formula don't plot an overlaying line: it only adds a line under
the
> graph.
> How can I do?
>
> Ant
|