[amibroker] Plot shapes on future bar

2007-04-15 Thread tedd2pumpkin
Hi, I was wondering if it is possible to plot a circle on a future bar. For example: How to plot the Average price of the last three bars as a circle on the next (Future) bar. Thanks, Greg

Re: [amibroker] Plot shapes on future bar

2007-04-15 Thread wavemechanic
How about: maclose = ref(ma(c, 3), -1); plot(maclose, ... , styledots|stylenoline); plot(c, ... ); Bill - Original Message - From: "tedd2pumpkin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, April 15, 2007 11:39 AM Subject: [amibroker] Plot shape