In my trading strategy I'm using intraday trading in two sessions - American and European. The risk per trade doesn't exceed 2% of the min account amount. The following indicators are used in my system: moving averages, Bollinger' Bands, Pivot Points, MACD, lines of support/resistance, Fibonacci retracement. In the beginning I will trade with 1 lot (risk per trade - 1% of min acc. am.) or 2 lots ( risk is 2 %). The number of lots will be increased, if the deposit encreases also.
Strategy
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2009
+6.4%
+11.9%
-31.5%
+1.1%
+0.1%
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:' $'});
}