- Search Energy EXCH
-
RaptorUK replied Jun 12, 2013You should see the information required in the experts tab . . . image You can copy it from here or . . . right click and then click open to open the experts log file, then you can copy and paste the info from there.
The screen grab ...Request for a little bit of help with some Broker info - MT4
-
RaptorUK replied Jun 12, 2013Perhaps you could return the favour . . . url
M-candle indicator alterations?
-
RaptorUK replied Jun 12, 2013Try the attached. It is configurable to paint or not paint Bar 0 extern bool PaintBar0 = false; All mods are marked RaptorUK.
M-candle indicator alterations?
-
RaptorUK replied Jun 12, 2013Perhaps you could return the favour . . . url
Please change RSI indicator to period 14
-
RaptorUK replied Jun 12, 2013It's now configurable . . . extern int RSI_Period = 14; All mods are marked RaptorUK. The code compiles but has not been tested.
Please change RSI indicator to period 14
-
RaptorUK replied Jun 11, 2013It's probably an hours work . . . but it's bed time for me right now, sorry.
More Noticeable On-Chart Symbol Display
-
RaptorUK replied Jun 11, 2013Current price for EURPY is 127.8 approx and you want to see pivot lines for GBPJPY whose current price is 150.2 . . . how will that work ? can you take a EURJPY chart and draw the GBPJPY lines on manually and show the screen grab.
I will code your EAs and Indicators for no charge
-
RaptorUK replied Jun 11, 2013Did you read the thread I gave a link to ?
I will code your EAs and Indicators for no charge
-
RaptorUK replied Jun 11, 2013How ? please explain, it may help someone with the same issue.
Cannot login [no connection] - MT4 Error code #6
-
RaptorUK replied Jun 10, 2013Please show the code you tried . . . Imagine you had this . . . SendMail("Email subject", "email message"); or . . . string Subject = "Email subject", Message = "email message"; SendMail(Subject, Message); then you can do . . . ...
I will code your EAs and Indicators for no charge
-
RaptorUK replied Jun 10, 2013Just look at the difference between how you call SendMail() and SendNotification() SendMail() takes 2 strings, SendNotification() takes one string. The 2 strings used with SendMail() can be combined into one to use with SendNotification(), for ...
I will code your EAs and Indicators for no charge
-
RaptorUK replied Jun 9, 2013There is no drag and drop, all you do is pause the tester, move the Object representing the type of trade you want to the position where you want it placed, do the same with SL & TP if you wish, then press f12, if this doesn't work you may have ...
Strategy Tester: Cannot Buy/Sell
-
RaptorUK replied Jun 8, 2013You have posted the code for IndicatorMoreShift() . . . intIndicatorMoreShift(bool set=false,int shift=0) { staticint mem; if(set==true) { mem=shift; } else {//int return_val=mem; mem=0; // reset//return(return_val);} return(mem); } I'm not quite ...
Indicator not visible to EA
-
RaptorUK replied Jun 7, 2013Yep, that is a function declaration specific to fxDreem, it will be declared in your code somewhere of in a additional file that is included. If you want to set the shift to 1 you don't actually need to use this function, just replace it with 1 . . ...
Indicator not visible to EA
-
RaptorUK replied Jun 7, 2013It looks correct to me too, 2147483647 is EMPTY_VALUE The problem is most likely caused by IndicatorMoreShift() returning 0 so the Indicator value being requested is for bar 0, any Indicator that doesn't re-paint will not have a valid value for bar ...
Indicator not visible to EA
-
RaptorUK replied Jun 7, 2013Can you post a snippet of the code please . . .
Windows 8: MT4 compiler not generating EX4
-
RaptorUK replied Jun 7, 2013Try adding these lines of code to help you debug what is going on . . . double f_dTool_1 = iCustom(CurrentSymbol(),CurrentTimeframe(),"ma-wpr n", 39,10, 0,0+IndicatorMoreShift()); int RaptorShift = IndicatorMoreShift(); Print("Value returned from ...
Indicator not visible to EA
-
RaptorUK replied Jun 7, 2013These EA generator type tools are pretty badly written and generally produce poor code. ( url ) If you want good code there are 2 ways to get it, learn or pay someone who knows what they are doing. Can you show the iCustom() call that your code is ...
Indicator not visible to EA
-
RaptorUK replied Jun 7, 2013Does it work in the Strategy Tester ?
I will code your EAs and Indicators for no charge