- Search Crypto Craft
- Chau1985 replied Dec 29, 2016
Many thanks again Genry. So in my understanding it is a combination of multiple timeframes combined into one indicator. I guess the indicator is not repainting so it is easy to "manual" backtest the indicator. Before I made this post I found this on ...
Quantum London Trading
- Chau1985 replied Dec 28, 2016
Genry, I've been studying/analyzing your version "EA_QLT_RSI4Cmtf_AEe" and found that the "Stoch4Cmtf" is quite useful as a an entry indicator. I tried to find a little bit more about it online, but cannot find it. I understand that you want to ...
Quantum London Trading
- Chau1985 replied Dec 19, 2016
I think we should help Genry to make a FAQ. There are a lot of recurring questions which could be documented in the FAQ. I think we should start collecting all the files for Genry and compile them in one posts so it is easy for people to find. I try ...
Quantum London Trading
- Chau1985 replied Dec 15, 2016
So it is a confirmation that EA_QLT_RSI4Cmtf_AEe is only selling and not buying for the trades right? I also noticed this on my test. I guess I am ready to use it in a live account, hope it also works as well as in the demo accounts. Wish me luck!
Quantum London Trading
- Chau1985 replied Dec 14, 2016
I have signed up a while ago (also because of this thread) and I do not have any knowledge on Russian. What you should do is make a printscreen of the translations of all the fields you have to fill in. Then do not translate the page but fill in the ...
Quantum London Trading
- Chau1985 replied Dec 13, 2016
Genry, many thanks for your answer and sorry for asking something before using the search function. Your answer gives me a better direction how to use the EA. I have tested for last two days and it shows quite a good result with low DD
Quantum London Trading
- Chau1985 replied Dec 12, 2016
Thanks Genry. Where do I put in the size of the spread I was looking in the inputs but can't find it. Also do I use the average spread or the min spread that I have found on the broker's website. For the initial deposit, if I have USD1,000 in my ...
Quantum London Trading
- Chau1985 replied Dec 12, 2016
Do you have already a set of custom settings you can share or do we need to check for ourselves with backtesting and forward testing? I was checking on this Russian forum before and I got some custom settings, but as Google Translate is not 100% I ...
Quantum London Trading
- Chau1985 replied Sep 15, 2016
Thank you Genry. I was having a little bit of problem reading the Russian, even with Google Translation. So I can take the strategy in the PDF file and copy the settings described in Параметры. I would like to know that if every setting is the same ...
Quantum London Trading
- Chau1985 replied Sep 13, 2016
Am I correct that every set, i.e. the EURUSD set, does not work with the GBPUSD. What setting is crucial that it doesn't work on different pairs?
Quantum London Trading
- Chau1985 replied Jul 6, 2016
Thanks again RedLineFred. I will try it out when I'm back at home. It could be that I have some questions. But thanks again for your feedback!
I will code your EAs and Indicators for no charge
- Chau1985 replied Jul 6, 2016
A very noob question. I always thought that trading in multiple pairs is just simply drag and drop to the Symbol Window and that's it. Now my EA is able to trade, but only with 1 pair of Symbol at the same time. Another Symbol will only trade when ...
I will code your EAs and Indicators for no charge
- Chau1985 replied Jul 6, 2016
Thanks for your reply. It does really make sense what you are saying. However, due to my limited programming skills at the moment I encounter the following problems/questions: I do not know how to compare current count with previous count. So if the ...
I will code your EAs and Indicators for no charge
- Chau1985 replied Jul 5, 2016
Alrightie then, I finally am coming a little bit closer to where I want to be. This is the new code I have used //---- Close Open BUY and Pending BUY by Selected Symbols and Selected Profit of Open BUYS { double orderTP = OrderTakeProfit(); int ...
I will code your EAs and Indicators for no charge
- Chau1985 replied Jul 5, 2016
Still trying to close my open orders when one of the order hitting TakeProfit { int total = OrdersTotal(); //Use OrdersTotal for(int i=total-1; i>=0; i--) //Search for latest ticket { if(!OrderSelect(i,SELECT_BY_POS)) //Latest order, Select ticket ...
I will code your EAs and Indicators for no charge
- Chau1985 replied Jul 5, 2016
Many thanks lghr. However, I still got the closed - undeclared identifier
I will code your EAs and Indicators for no charge
- Chau1985 replied Jul 4, 2016
lghr thank you for your quick reply. I found there was an error in 'closed' - undeclared identifier. I added a bool in front of it: else bool closed = OrderDelete(OrderTicket()); However it doesn't work as when one sell order is closed the other ...
I will code your EAs and Indicators for no charge
- Chau1985 replied Jul 4, 2016
Hi all, I am trying to code my first EA and I'm able to open my orders. Now my EA will first open a buy order and I will open a few buy limits with it, same for sell orders there will be a few sell limits placed. Now the part where I am stuck at the ...
I will code your EAs and Indicators for no charge
- Chau1985 replied Jun 23, 2016
I found a zigzag indicator that doesn't repaint. The indicator will display three signals when there is a turn of the zigzag. The value of the three signals are stored in three buffers. Now I want to create an EA that will Ordersend a buy or sell ...
I will code your EAs and Indicators for no charge
- Chau1985 replied Jun 17, 2016
thanks for the mq4. I compiled the mq4 and it says that on line 288 the variable WaveStart and WaveEnd are not used. Can I just remove this line? If I want to use the values of FIBO0, FIBO100, etc.... in an expert advisor for ordersend, do I need to ...
Zigzagy Auto Fibo (Need some help with Obj_expansion code)