I trade longer term mechanical trading systems exclusively on the ASX. I rarely look at daily charts and the systems are built using weekly timeframes. The information in this site is based on actual trades in real portfolios. I don't trade using margin or any sort of leverage. I mainly use Amibroker for system testing and trade monitoring. I am not selling anything. This is just a journal to record where I have been and, just maybe, where I am going.
Subscribe to:
Post Comments (Atom)
3 comments:
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
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
Thanks Stevo, most helpful - I've always liked the look of your charts!
Post a Comment