The main part of this multi timeframe strategy - which is currently implemented in an Expert Advisor for the MetaTrader 4 platform - is to open trades at early signs of a trend reversal. Precondition for a trade is always the possibility of a small Stop Loss (in most cases between 20-40 pips). All trades are opened with one lot. The number of concurrent lots will be limited to 6, but it is possible that a Long and Short Trade in the same currency are open concurrent.
Strategy
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2009
+0.8%
+0.3%
-0.4%
+1.4%
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:' $'});
}