DislikedThe percentage to close are calculated with this code:
internalQuoteToCloseAtTP1 = QuoteToCloseAtTP1;
if(QuoteToCloseAtTP1<100){
internalQuoteToCloseAtTP2 = (100/(100-QuoteToCloseAtTP1)) * QuoteToCloseAtTP2;
}else{
internalQuoteToCloseAtTP2 = 0;
}
if((QuoteToCloseAtTP1+QuoteToCloseAtTP2)<100 ){
internalQuoteToCloseAtTP3 = (100/(100-QuoteToCloseAtTP1-QuoteToCloseAtTP2)) * QuoteToCloseAtTP3;
}else{
internalQuoteToCloseAtTP3 = 0;
}
so the EA have to get 1.6 and not 1.44 at TP2 (as you can see from the code). I don't understand what'a going on.......Ignored
- #1,183
- May 22, 2009 7:37am May 22, 2009 7:37am
- | Joined Oct 2008 | Status: Learning | 1,057 Posts
What you do is a reflection of you....what I do is a reflection of me.
- #1,197
- May 25, 2009 4:02am May 25, 2009 4:02am
- | Joined Oct 2008 | Status: Learning | 1,057 Posts
What you do is a reflection of you....what I do is a reflection of me.