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:

  1. Anonymous3:24 PM

    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

    ReplyDelete
  2. 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

    ReplyDelete
  3. Anonymous10:54 AM

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

    ReplyDelete