Hello Ladies and Gentlemen, my trading system is based 90% technical analysis and 10% fundamental, I trade daily, but through out the week it it could be anywhere from 1 to 20 trades a week, my number one rule "I prefer to take less but steady", another words in my trading style you will see steady and profits with least risk, (low DD).
I have notice other traders like to open multiple market position of exact same trade, you will not see it in my trading system, I usually trade one lot at a time. I will execute more than one position only when the first one is in green and when its risk less.
Every time I execute a trade I have a S/L ready. (99% its usually with in 100 pips) and I close a trade with T/P I do not shift S/L.
Money menegment: .1 lot per $1000. 1 lot per $10000. Min $1000 to trade.
As I said I trade one lot(trade) at a time , I open a second position of the same currency only if the first one atleast +50 pips
Strategy
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:' $'});
}