- Search Energy EXCH
-
NowAndLater replied Mar 29, 2010Let me see if I understand what you want: If you have a buy and current price is below ta3clean1, then you want to close the buy_trade. In your code you have this condition to close a trade: if(iOpen(NULL,0,0) < t3clean10 && ...
closing order
-
NowAndLater replied Mar 22, 2010No you can't change ordercomment, but what I meant was that he can get the new comment of the remaining part by doing what I wrote and so he can still manage the remaining part
OrderComment() Question
-
NowAndLater replied Mar 21, 2010After selecting an order with orderselect and before u close part of the trade do this: OrderSelect(....); string newOrderComment = "from #" + OrderTicket(); OrderClose(....); newOrderComment is the new comment of the remaining part
OrderComment() Question
-
NowAndLater replied Mar 18, 2010Then I can't see what the problem is either, hope someone else can
Ask/Bid programming problem
-
NowAndLater replied Mar 18, 2010First off all use this: Double spread = (Ask - Bid) /Point; It ensures u get the right spread no matter what pair. Second of all, is ur broker 4 or 5-digit?
Ask/Bid programming problem
-
NowAndLater replied Mar 16, 2010I've allready descibed the "problem" here. It's a known fact and not a problem actually, it's just the way things work with stoporders. I'm sorry but I won't change the code so u can choose lot size. I've already shown u in the previous post how to ...
Awesome system - HELP!
-
NowAndLater replied Mar 15, 2010First of all: don't use it on real account! It hasn't been properly tested. Second: the EA trades in procentage of the accountbalance, u can't choose the lotsize in the inputs, just the percentage. But you can calculate what 0.01 lot is for your ...
Awesome system - HELP!
-
NowAndLater replied Mar 14, 2010You're welcome. But I must say that I've seen similar strategies and they usually don't work, there's no edge in this kind of setups over the long run.
Awesome system - HELP!
-
NowAndLater replied Mar 14, 2010It's not the sl that is the problem, it's the entry price. If the stoporder entryprice is too close to the market (within a stoplevel) then the order will not be executed. The SL and TP is never a problem since they are always more than a stoplevel ...
Awesome system - HELP!
-
NowAndLater replied Mar 14, 2010I made this EA for metatrader quickly, hope it's close to what u r looking for. I think it will work, but there's one problem: If price is within a stoplevel (depends on broker) away from desired price for the buystop and sellstop, the stoporder ...
Awesome system - HELP!
-
NowAndLater replied Mar 12, 2010Good post KR! It's a very good advice, especially if u r just starting out with DIBS, this certainly would be a good way to do it. I think that it could be done otherwise in the moneymanagment and trademanagment departments than the original DIBS ...
The DIBS Method... No Free Lunch continues
-
NowAndLater replied Mar 12, 2010Not sure if ur trade got triggered yet, but if ur stoploss is the entire bar then u should have about a 55-60 pips stoploss (including spread, there or there about). There's a trendline acting as resistance plus a s/r at around 91.30 which should be ...
The DIBS Method... No Free Lunch continues
-
NowAndLater replied Mar 11, 2010Not what I hoped to wake up to, there were no trades filled as neither EU or EJ jumped up...
Daily Inside Bars
-
NowAndLater replied Mar 10, 2010I've found my way over here as well... 4H IB's all over the place at seemingly good prices. The timing is a bit bad with no big money in play, but they are worth the gamble (it feels like a gamble at this hour) imo at 1/4 the normal risk. No ...
Daily Inside Bars
-
Free Trade Manager
Started Mar 6, 2010|Platform Tech|1 reply
Hi all! I'm posting my own trade manager that have helped me a lot, maybe it will be helpfull ...
-
NowAndLater replied Mar 4, 2010When u open the trades, u can add a comment. When u then do an orderselect, do this: int selectOrder(string cO) { bool exist = false; for(int i=OrdersTotal()-1;i>=0;i--) { OrderSelect(i,SELECT_BY_POS); if(OrderComment() == cO) { exist = true; ...
Order Closeby function
-
NowAndLater replied Mar 2, 2010I'm going to quote myself from that post: Maybe the answer is there to be found, and maybe there's more than one answer but only one that suits you... By this it's should be clear (and I've said it before) that you should try and find a way to trade ...
The DIBS Method... No Free Lunch continues
-
NowAndLater replied Feb 26, 2010Hiya mate! Today I was home (sick) and felt like typing a little
. Just had to put it up there... And thank you
The DIBS Method... No Free Lunch continues