- Search Energy EXCH
-
kennyhubbard replied Nov 19, 2021It is normal. They will charge you swap on Friday night again. The week end is on Saturday night and Sunday night.
What will be the swap rate for Friday after triple swap?
-
kennyhubbard replied Nov 19, 2021Broker charges triple swap once per week, and the day that it happens can be found in the contract specifications.
What will be the swap rate for Friday after triple swap?
-
kennyhubbard replied Nov 5, 2021I have used them a bit. Nothing spectacular but I got my money back from them when I asked for it, so no major problems to report. I believe they are somehow related to Alpari. Exact same terms and conditions and websites could be twins.
FXTM (forex time) discussion
-
kennyhubbard replied Oct 27, 2021I find the MT4 notifications to be unreliable. Use telegram instead. There is a thread here somewhere on how to do it.
MT4 push notifications not working at all
-
kennyhubbard replied Oct 22, 2021It tends to be the exception. Most brokers will change at least 4 to 5 hours before rollover(at the latest). Many change early in the day. But in the last hour before rollover is definitely an exception and is one of my pet peeves.
Slippage on MT4 Swaps
-
kennyhubbard replied Oct 22, 2021There is no slippage on swaps. What you see is what you get. Some brokers change swaps mere minutes before rollover. This practice should be illegal but unfortunately it isn't. All you can do is keep a record of it and move on if your broker has a ...
Slippage on MT4 Swaps
-
kennyhubbard replied Oct 10, 2021Probably because you got it looking at something called DwFast rather than DwMaFast if (Close[barRange] > DwFast)
Need help with my code, please
-
kennyhubbard replied Oct 8, 2021Actually you don't need MT5. The MQL storage facility works fine with the MQL4 meta editor.
Common EA library for multi instances
-
kennyhubbard replied Oct 4, 2021Just use the MQL5 storage facility. You can load any EA to any instance of MT4 by using MQL5 community ID
Common EA library for multi instances
-
kennyhubbard replied Sep 10, 2021For big funds you should always break up your capital amongst several brokers. I never allow 1 broker more than 25% of my funds. You never know when some black swan event will wipe out your broker. All brokers will claim to segregate funds which is ...
Best broker for big funds?
-
kennyhubbard replied Jun 9, 2021Hi agahi, Unfortunately, that is not how it works. For example, if you have a USD account, you would be unable to trade EURGBP? The broker has to 'lend' you the EUR in order to exchange it for the GBP(believe me you don't want the broker converting ...
What is a swap?
-
kennyhubbard replied May 12, 2021Ok, here you go. I haven't tested it extensively but seems to work. It will only set tp & sl of the symbol of the chart it is running on. If you want to it set the stops of other symbols, you must run it on those chart as well, so you will be ...
EA to Set SL & TP of Open Trades Automatically
-
kennyhubbard replied May 12, 2021As a general principle I would agree, however, IC Markets is a big properly funded broker. Their reason for going offshore are truly valid and I am glad they did. Unfortunately, this is an example of where the authorities step in with regulations ...
IC Markets Australia vs. IC Markets Seychelles
-
kennyhubbard replied May 11, 2021chimoong, I think you will find the rounding issue is because I used OrderClosePrice, so the TP & SL is off by the value of the spread. I reckon if you change to OpenPrice, the problem will go away. Try it and let me know.
EA to Set SL & TP of Open Trades Automatically
-
kennyhubbard replied May 11, 2021Chimoong, i will have to consider the rounding problem tomorrow as it’s past my bedtime. Isuspect it has more to do with your multiplying the point by 10. Try removing the multiplyer and manually increase your stops x 10. I should also correct ...
EA to Set SL & TP of Open Trades Automatically
-
kennyhubbard replied May 11, 2021You can ignore these lines :- I put them in there for some troubleshooting.
EA to Set SL & TP of Open Trades Automatically
-
kennyhubbard replied May 11, 2021Yeah, just had a closer look, try replacing your ONTick function with this :- void OnTick() { double sl = SLpip * cPoint; double tp = SLpip * cPoint; for(int i=OrdersTotal()-1; i>=0; i--) { if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)) ...
EA to Set SL & TP of Open Trades Automatically
-
kennyhubbard replied May 11, 2021Your EA is modifying all trades off all the charts you running it on, so if you run it on XAU, it is going to try and modify your EU trades as well, with the consequent incorrect point info. After your OrderSelect add a line like this :- Now you ...
EA to Set SL & TP of Open Trades Automatically
-
kennyhubbard replied May 10, 2021static keyword allows the function to 'remember' the value when the function is called again. Without static, the value of New_Time will always be 0 when the function is called and the function will always return true. With the static keyword, when ...
Help with logic for only hitting one order per bar