My strategy is based off of pattern recognition. I mainly use price action, price patterns, trendlines and support and resistance lines to make my trades on either the 1 or 4 hr chart. I seek a minimum of 100 pips a week and primarily trade the GU, EU, GJ and USDCHF.
Radiance - trade strategy
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2010
+0.9%
+5.8%
+5.3%
-4.5%
-0.6%
+0.5%
-5.2%
2011
+7.8%
+3%
-3.2%
+8.5%
+1.5%
-1.3%
-5.2%
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:' $'});
}