QuoteDislikedexactly! ..feeling stupid now lol... thanks!
No need to feel stupid, that's why it's always a good thing to mention any issues you're having as it seems there's always someone with an answer.
A Simple London Breakout V.2 1,490 replies
SIMPLE EA for a simple method needed!! 2 replies
Another Simple London Breakout System (with a twist) 46 replies
QuoteDislikedexactly! ..feeling stupid now lol... thanks!
DislikedEverybody can basically take a break tonight as Usd/Jpy is the only pair I have with a valid box for tonight. Probably best as the market will hopefully[color=Blue] stabilize a little before resuming on Monday.
I will also be looking over charts and playing around with some times and settings for an Asian session version of this strategy over the next week to see if there is any merit in doing so. sqaulou needs to take care of some adjustments to the indicator for this to work properly as certain features...Ignored
DislikedI get these error massage from MT4. What's wrong with my set?
2010.05.21 14:44:15 London Breakout EA-V4.0 GBPUSD,M15: Alert: LB EA: GBPUSD OrderSend() FAILED at 1.43190000 (4051): invalid function parameter value
2010.05.21 14:44:15 London Breakout EA-V4.0 GBPUSD,M15: Alert: LB EA: GBPUSD Sending SELLSTOP at 1.43190000 0.00000000 lotsIgnored
//+------------------------------------------------------------------+
void DisplayUserFeedback()
//+------------------------------------------------------------------+
{
[b] if (MaxRisk <= 0) {
comment = StringConcatenate(comment, Gap, "Lot size = ", Lot, " (MaxRisk not used)", NL);
} else {
double lotsToTrade = MathMin(Lot,GetMaxLot(StopLoss,MaxRisk));
comment = StringConcatenate(comment, Gap, "MaxRisk = ", MaxRisk, "% => ", DoubleToStr(lotsToTrade,2), "Lots, AccountFreeMargin = ", DoubleToStr(AccountFreeMargin(),0), AccountCurrency(), NL);
}
[/b]
comment = StringConcatenate(Gap, WindowExpertName(), " ", EA_VERSION, NL);
.......