- Search Metals Mine
- eess replied Apr 15, 2021
Have you tried using Jagzfx multiplexer, VWAP is normal input, MA as filter input.
I will code your EAs and Indicators for no charge
- eess replied Apr 14, 2021
url Try this free utility first, might be what you want, I didn't try but from the video looks like there is button to enable and disable synchronization on specific charts.
I will code your EAs and Indicators for no charge
- eess replied Apr 12, 2021
The problem is with the indicator Day_Of_Week_Lables on your chart which delete all objects on the chart whenever the timeframe is changed. So just replace it with this version which I edited the portion that deleted all objects. Then you can use ...
I will code your EAs and Indicators for no charge
- eess replied Apr 11, 2021
I later realised that MQL5 has this function ChartIndicatorGet() where I can get the indicator handler of the indicators on chart. So this version should be able to help. But only available in MQL5, not mql4. Anyway, if you are using MT4, Paul and ...
I will code your EAs and Indicators for no charge
- eess replied Apr 10, 2021
Using MQL5, use function ChartIndicatorAdd() and ChartIndicatorDelete(). However, it's something like all your indicators combined into one indicator by calling icustom etc, no need to put the logic of your indicators calculations, just need to call ...
I will code your EAs and Indicators for no charge
- eess replied Apr 4, 2021
This has already been asked before. It cannot be fixed without the source code for the library mpxlib.ex4. url
I will code your EAs and Indicators for no charge
- eess replied Mar 20, 2021
Works perfectly fine on my side without changing any settings.
I will code your EAs and Indicators for no charge
- eess replied Mar 10, 2021
Thanks a lot for your kind advice!
building multi-pair multi-timeframe scanner
- eess replied Mar 9, 2021
Hi, I managed to solve the problem already. The issue is not with this iCustom Handler, it's the custom indicator that it is calling which is more resource intensive. Calling another custom indicator does not produce this problem.
building multi-pair multi-timeframe scanner
- eess replied Mar 9, 2021
Hi, thank you very much for sharing this knowledge for MQ4. May I know if you have any ideas how to do multipair and multi timeframe on MT5? I tried similar method as yours for MT5, but creating the icustom handlers in the onInit increases my CPU ...
building multi-pair multi-timeframe scanner
- eess replied Mar 7, 2021
Hi, I am not able to reproduce the error you mentioned about the lotsize. So far I check through the function LotSize() in your code, it is returning correct value. I'm not able to simulate an orderSend now as the market is not open. Not sure if the ...
I will code your EAs and Indicators for no charge
- eess replied Mar 6, 2021
void OnTick() { RefreshRates(); // Spread Text double spread = (Ask - Bid) / Point; ObjectSetText("ButtonEA-Spread_00_Label", StringSubstr(Symbol(),0,3)+"/"+StringSubstr(Symbol(),3,3)+ " Spr " + DoubleToStr(NormalizeDouble(spread / divider, 1), ...
I will code your EAs and Indicators for no charge
- eess replied Mar 3, 2021
Try printing out the mid_price to the screen or console and also at each "if" statement to see which "if" loop it went into. And also if there are other parts of your code where you set the sell_price and buy_price, print them out as well. Then you ...
I will code your EAs and Indicators for no charge
- eess replied Mar 3, 2021
Hi @grandaevus, I am using version 22.02 MT5 version, it has array out of range exception sometimes: NG 2 18:04:27.282 ###CMSMIndV22.02 (XAUUSD,M1) array out of range in '###CMSMIndV22.02.mq5' (529,30) JK 2 18:04:27.282 ###CMSMIndV22.02 (XAUUSD,M1) ...
CCFp weekly signals (set and forget basket trading)
- eess replied Feb 27, 2021
You need to solve the zero divide error in line 277 for OnDeinit to be successfully called... Change it to: if(YrLo!=0) YH5 = (YrHi/YrLo)*YrCl ; else YH5= <fill in yourself>
I will code your EAs and Indicators for no charge
- eess replied Feb 24, 2021
Using info4saeed's EA......Today's results, run during Asian, London and part of US session, close all positions at 11.30pm (GMT+8) The losing trades are due to the following: - NZD: a major spike during NZD interest rate news release - GBP: a major ...
Dashboard EAX
- eess replied Feb 24, 2021
Hi info4saeed, This is one of the trades taken by the EA today. From the screenshot attached, we can see that the first buy trade was taken when there was a sudden spike upwards, which triggered the entry criteria of the EA. When the price was then ...
Dashboard EAX