- Search Metals Mine
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Aug 19, 2014
Sorry, I have no idea what this means
See my reply to Symona Do you mean that the alert will only be triggered on an actual cross? Ie. if price is already above the tenkan when price closes above the cloud, an alert will not be triggered unless ...Ichimoku Cloud Break Out Email Alert
- Gumrai replied Aug 19, 2014
I don't actuall see the point of the chikou span. I believe it to be misleading because it is simply current price shifted back kijun periods. It always looks good where it crosses the price on the chart because it is effectively "looking into the ...
Ichimoku Cloud Break Out Email Alert
- Gumrai replied Aug 18, 2014
Hi, this is a work in progress, it only works with closed candles Please try it and let me know if any problems At the moment it has 3 conditions: Tenkan above/below the kijun , if above is a buy condition, if below a sell Price closes above/below ...
Ichimoku Cloud Break Out Email Alert
- Gumrai replied Aug 18, 2014
It's not clear from your post, how you are drawing your lines. Are you using trendlines/horizontal lines ? If so, you should be able to get the values with ObjectGetValueByShift or ObjectGetValueByTime
How to write/program EA?
- Gumrai replied Aug 17, 2014
This one uses buffers instead of objects, so hopefully, will not miss any now. Although I really don't understand why they didn't show on your chart.
Price Cross Tenkan Sen line Email Alert?
- Gumrai replied Aug 17, 2014
I've never actually tried this, so no recommendation. url
MT4 candle-by-candle manual backtesting
- Gumrai replied Aug 15, 2014
That's strange. Looks like your chart is the same as I have and the arrows are not missing on my chart I will make modifications later, maybe use buffers instead of drawing objects
Price Cross Tenkan Sen line Email Alert?
- Gumrai replied Aug 15, 2014
Yes, coincidentally I had started something similar and not finished it. Seeing your post, I decided to get on and adapt it to what you requested.
Price Cross Tenkan Sen line Email Alert?
- Gumrai replied Aug 15, 2014
Please try this I've not tested it much, but it should work ok.
Price Cross Tenkan Sen line Email Alert?
- Gumrai replied Aug 13, 2014
This sub-forum is about platform tech. There are other sub-forums for trading discussion, please post there.
I will code your EAs and Indicators for no charge
- Gumrai replied Aug 13, 2014
Then one of the indicators probably has a never-ending loop and so is causing the crash
MT4 is freezing when I change templates?
- Gumrai replied Aug 12, 2014
Does the template that you are changing to have any indicators or EAs attached?
MT4 is freezing when I change templates?
- Gumrai replied Aug 11, 2014
I have made the modifications, but not tested Please do not PM me again with requests for free coding as they will be ignored.
I will code your EAs and Indicators for no charge
- Gumrai replied Aug 11, 2014
Not many coders like to help for free when there is not a "please" or "thank-you" in sight. "I want" is a demand "can anybody please do this" is a request
I will code your EAs and Indicators for no charge
- Gumrai replied Aug 10, 2014
Help you with what? I don'see a request detailing what it is that you want. Actually I don't see any sort of request.
Need help modifying SL for this EA
- Gumrai replied Aug 9, 2014
turny Please note that your code uses 25 points, not necessarily pips ie if the broker uses 5 digits as in 1.51111, 25 points is 0.00025 Below will compile with no warnings. Note for checking code the Print statement should also include the old SL, ...
I will code your EAs and Indicators for no charge
- Gumrai replied Aug 7, 2014
Before start insert #property script_show_inputs //--- input parameters input bool Show_On_H1=true; input bool Show_On_H4=true; input bool Show_On_D1=true; int TF=0; Just after start() insert if(Show_On_H1) TF+= OBJ_PERIOD_H1; if(Show_On_H4) TF+= ...
MT4 coding help
- Gumrai replied Aug 7, 2014
The file works on my platform, maybe the problem is that you "saved as csv" That's exactly what I did, so the modified file that I attached would/should have worked if you made no adjustments. Definitely wierd though.
MT4 coding help
- Gumrai replied Aug 6, 2014
Hi again Christabo, I had a look at the code and it all seems ok. Seems that the problem is with the file it is reading. Maybe it was written using quotation marks where none were needed? I have modified and attached the file for you to try. Note ...
MT4 coding help
- Gumrai replied Aug 6, 2014
Hi Christabo, I haven't examined the rest of the code, but FileOpen is expecting a string. handle = FileOpen (PlotDataChiAspects.csv, FILE_CSV|FILE_READ, ','); try adding quotation marks handle = FileOpen ("PlotDataChiAspects.csv", ...
MT4 coding help