- Search Energy EXCH
-
RaptorUK replied Aug 11, 2013What about the thread on this very Forum where people actually answer requests ? alternatively go here: MT4 & MT5 coding
Fixing Your Indicators or EAs (Free)
-
RaptorUK replied Aug 11, 2013Just check the OrderType() if it is OP_BUY or OP_SELL increment the Open trades count, if it is OP_BUYLIMIT, OP_BUYSTOP, OP_SELLLIMIT or OP_SELLSTOP increment the pending order count.
Separating Count of Max Pending Orders and Max Open Trades
-
RaptorUK replied Aug 11, 2013The thread starter's last post on this Forum was on the 6th Jan, you may have a long wait for a reply.
Fixing Your Indicators or EAs (Free)
-
RaptorUK replied Aug 8, 2013It really depends on what you use it for and how you use it . . . it most certainly does work and gives useful information. If you want it to tell you garbage then yes it can be made to do that, but why do you go looking for garbage ?
How to get 99% tickdata for metatrader backtesting?
-
RaptorUK replied Aug 8, 2013Yes, Tick Data Suite also by Birt but you have to buy it . . . also have a look at TickStory
How to get 99% tickdata for metatrader backtesting?
-
RaptorUK replied Aug 7, 2013Why is this a double ? extern double TotalMaxPositions = 2; if you try to compare an int with a double you may find it is never equal even if it is . . .
Counting Multiple Orders With Multiple Magic Numbers in one EA
-
RaptorUK replied Aug 5, 2013If you want to test a manual strategy in the Strategy Tester look up vhands, it allows you to place trades manually.
Expert Advisor Builder
-
RaptorUK replied Aug 4, 2013Looks about as good as a Coin Toss to me . . .
Great Breakout System with Unfinished EA
-
RaptorUK replied Aug 4, 2013I wouldn't be surprised if your initial post may were to end up being regarded as commercial anyway . . . I don't think anyone would say that you aren't entitled to voice your opinion. Nope, I have never used any other than my installation of ...
Expert Advisor Builder
-
RaptorUK replied Aug 4, 2013Ah yes, I didn't recognize your ID, Molanis and it's poor mql4 code was the root of the discussion as I recall. If your "coders for hire" comment was aimed at me it is misdirected, I've not coded for any amount of cash, for free for some people, ...
Expert Advisor Builder
-
RaptorUK replied Aug 4, 2013No, that won't work . . . both EAs will have their own init(), deinit() and start() functions and their own sets of globally declared variables . . . they may also have their own functions with the same names that do different things . . . if you ...
Running 2 EAs at the same time within one EA
-
RaptorUK replied Aug 4, 2013Do any of the EA Builder type tool produce correct/acceptable code ? I know EA Builder dopes not . . .
Expert Advisor Builder
-
RaptorUK replied Aug 3, 2013Asking the same question multiple times does not encourage me to help you.
Tick indicator modify request
-
RaptorUK replied Aug 1, 2013This is wrong . . . string Gb_i; if(iClose("GBPUSD", PERIOD_D1, Gb_i) > GblastPrice) { FontColor = Lime; } if(iClose("GBPUSD", PERIOD_D1, Gb_i) < GblastPrice) { FontColor = Red; } GblastPrice = iClose("GBPUSD", PERIOD_D1, Gb_i); iClose() need an int ...
Symbol price indicator (Dashboard)
-
RaptorUK replied Aug 1, 2013Yes, use iClose() instead of Close[]
Symbol price indicator (Dashboard)
-
RaptorUK replied Jul 31, 2013Glad to hear it's working for you
I fixed a couple of other issues while I was in there, it now updates at the start of a new bar rather than every 10 mins, it also no longer deletes all the lines and then re-creates them . . . it just moves them ...Sweet spot indicator, lines disappearing - help
-
RaptorUK replied Jul 31, 2013OK, try the attached version and let me know if it works. All changes marked RaptorUK file
Sweet spot indicator, lines disappearing - help
-
RaptorUK replied Jul 31, 2013So you made changes and didn't bother to comment the changes you made to the code ? so how does someone know your modifications from the original ? Are you certain you posted the correct version ? it's not easy to fix a problem that can't be ...
Sweet spot indicator, lines disappearing - help
-
RaptorUK replied Jul 31, 2013The code undoubtedly has some issues but I can't reproduce what you are seeing . . . what do you have ShiftLine set to ? try a smaller number if you are using the default of 15.
Sweet spot indicator, lines disappearing - help