My trading system has been developed keeping in view the high volatility of the Forex Market. I prefer trading with reasonable account size. Often I enter the market with one or two lots. The remaining lots are used as cushion if required by my system. I enter the market with certain cut loss in my mind. I like trading on the short term basis. Most of my trades will be closed within the same day.
Long_Road - trading system
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2009
+6.2%
+11.2%
-21.6%
function drawChartD() {
var data = new google.visualization.DataTable();
data.addColumn('date', 'Date');
data.addColumn('number', '$');
data.addColumn('string', 'title1');
data.addColumn('string', 'text1');
data.addRows([[new Date(, ,), , undefined, undefined]]);
var chart = new google.visualization.AnnotatedTimeLine(document.getElementById('chart_div'));
chart.draw(data, {displayAnnotations:true,allValuesSuffix:' $'});
}