Use 3 dimension of FX. Usually 1 position is opened with 3 lots. And there are 3 target levels. So, each of the lots is closed after reaching several level and gaining some profit.
3DFX - fx
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2009
+15.6%
+13.2%
+15.5%
+19.9%
-46.4%
+14.4%
2010
-1.7%
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:' $'});
}