Saturday, February 17, 2007

SDG weekly chart



Sunland chart - exits are based on the EOW close price. Chart is for the ReefCap forum. You will notice that I am having a bit of fun with cloudcharts.
http://lightning.he.net/cgi-bin/suid/~reefcap/ultimatebb.cgi?ubb=get_topic;f=15;t=000310

3 comments:

Anonymous said...

Stevo

Can I ask how you get the trend (red & green bar) graph at the bottom of the price chart in amibroker?

And also, how do you get the graph on the right and what does it represent?

Any code much appreciated.

Thanks

stevo said...

The trend ribbon is based on an index and uses the PLOT statement as follows;

Plot(2,"Index", IIf(indexfilter>0,colorBrightGreen,colorRed),
styleOwnScale|styleArea| styleNoLabel, -0.5,100 );

The Volume at Price graph on right plots the volume at different price levels for the prices that are currently displayed on the chart;

PlotVAPOverlay(300,5,colorPaleGreen,7); // Plot volume at price/ Market Profile

regards
Stevo

Anonymous said...

Thanks Stevo, most helpful - I've always liked the look of your charts!