- Search Crypto Craft
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Feb 21, 2014
Now you don't put indicator files in Broker files/Experts/Indicators. You put them in Broker files/MQL4/Indicators. During the update, existing indicators should have been copied to the new file.
Problems with MT4
- Gumrai replied Feb 20, 2014
What you are asking is impossible. It's like saying "The answer is 100, what was the calculation that resulted in the answer?" Of course, you can work out A calculation, but there is no way of knowing if it is the correct calculation.
Anyone have an idea how to replicate the white line
- Gumrai replied Feb 19, 2014
something similar to int lastshiftwithvalue=0; for(int buffercheck =i;buffercheck>=100;buffercheck++) { if(buffer[buffercheck]!=EMPTY_VALUE) { lastshiftwithvalue=buffercheck; break; } }
Last buffer with value
- Gumrai replied Feb 19, 2014
Not exactly great work Archun, but thank you
Actually it amazes me how many candle on the EURUSD hourly chart have bodies of 1 pip or less. Maybe why EURUSD has not been a great instrument to trade recently?Alert for difference in open and close of Price action
- Gumrai replied Feb 19, 2014
I've amended the code, so I think it should do what is wanted now (I hope
)Alert for difference in open and close of Price action
- Gumrai replied Feb 19, 2014
I can do that, no problem. In the OP, when Archun said that he wanted an Alert, I took that to mean a pop-up alert. By re-reading the post, I can see that it could also mean some sort of arrow on the chart
Alert for difference in open and close of Price action
- Gumrai replied Feb 19, 2014
Do you mean that the indicator doesn't appear in the custom indicator list or that you have attached it to a chart and it doesn't work? It seems to work fine on my platform. Of course there are not that many bars with 1 pip or less difference ...
Alert for difference in open and close of Price action
- Gumrai replied Feb 18, 2014
Rockit if(Digits == 5 || Digits == 3) f *= 10; calculates based on the chart the script is attached to, it may not apply to all symbols though. My brokers are mostly 5 /3 Digits but still have some symbols with 4 Digits
Top 10 Pairs with Highest Daily Range
- Gumrai replied Feb 18, 2014
I was thinking along the same lines of using the symbols in the market watch window. Scooby-doo, you probably know already, but just for info, when you click on Hide All in the market watch window only the pairs that make up the current profile and ...
Top 10 Pairs with Highest Daily Range
- Gumrai replied Feb 18, 2014
I have adapted the other indi so that it does what you want (I think!) As you didn't fully answer my question, I still don't know whether this is supposed to be a reversal or continuation signal, so I have coded it as a reversal.
Simple Indicator Request - Bars+Volume
- Gumrai replied Feb 18, 2014
THE Highest daily range from the last 20 days? Highest average daily range? Highest percentage/average percentage range?
Top 10 Pairs with Highest Daily Range
- Gumrai replied Feb 18, 2014
Try this. I have not tested the code properly, but I think that it will do what you want Note that you can input the amount of pips between open and close, default is 1 as you wanted.
Alert for difference in open and close of Price action
- Gumrai replied Feb 18, 2014
BTW if 3 consecutive up bars and other conditions are satisfied does this denote a buy or sell signal?
Simple Indicator Request - Bars+Volume
- Gumrai replied Feb 17, 2014
Seems like the indi that I attached in this thread url could be adapted to what you want relatively simply. I'd be happy to do it, but I do not have a build 509, so it would only be of use to you if you have metatrader build 600+. Let me know.
Simple Indicator Request - Bars+Volume
- Gumrai replied Feb 17, 2014
As a matter of interest, MODE_STOPLEVEL returns a value with the brokers that I use, but MODE_FREEZELEVEL doesn't. Does Alpari retuen a value for MODE_FREEZELEVEL? If so, maybe you can use this instead.
MT4 'return 0' problem
- Gumrai replied Feb 17, 2014
I believe that I can modify your indicator so that it only works on current and past data, instead of partly using future data as it does now, But please note that this would mean that the arrows would be 1 bar later than they are with the existing ...
Problem with my code, please help guys!
- Gumrai replied Feb 16, 2014
You cannot enter a trade at the start of the next candle with the arrow because your logic is flawed. Note, in the following sections of your code, I have changed the variable names to make the code easier to follow. But it is the same code This ...
Problem with my code, please help guys!