- Search Crypto Craft
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Jan 31, 2014
Wow, you joined FF in November 2011, which means that you have had an interest in trading for at least 2 years. In all that time, you have not read any topic or article relating to the MACD? This suggests that you have done little or no ...
Forex Strategy for USD/CHF
- Gumrai replied Jan 31, 2014
I thought that all MT4 platforms only used bid price on their standard charts. I think that you will have to ask your broker.
chart shows Mid-Price?
- Gumrai replied Jan 26, 2014
do not use SELECT_BY_TICKET, use SELECT_BY_POS [/font][/color][/highlight]if(OrderSelect(total, SELECT_BY_TICKET)==true)//select the first Order[highlight] [color=#000000][font=Verdana]When there is 1 open position, only the first trade will be ...
Problem with End-of-day-close code for MetaTrader
- Gumrai replied Jan 25, 2014
Wow! I didn't realise that. It seems incredible to me that brokers will force an update with something that is only at Beta testing stage.
Problems compiling an indicator after new MetaEditor Update
- Gumrai replied Jan 24, 2014
I know that there is a Beta version that you can download if you wish, it should not be an automatic update.
Problems compiling an indicator after new MetaEditor Update
- Gumrai replied Jan 24, 2014
Here's your compiled code. It compiled ok as it was, I have not tested or done anything with it.
Problems compiling an indicator after new MetaEditor Update
- Gumrai replied Jan 24, 2014
What new major MetaEditor update? My platforms are build 509, which I believe to be the most recent update from June last year.
Problems compiling an indicator after new MetaEditor Update
- Gumrai replied Jan 24, 2014
As I understand it Market Makers DO NOT depend on spread only for their revenue. They will often take the other side of their client's trades and will have a team assessing current risk and will hedge positions with a bigger bank to limit their own ...
What I've learned so far
- Gumrai replied Jan 24, 2014
Are you sure that LowestSell was working as expected? I believe that your problem was related to the precedence rules and to be honest, I always have difficulties with precedence when using && and ||. url That is why I will always use brackets, ...
Function not finding lowest BuyPosition - why?
- Gumrai replied Jan 18, 2014
You should not need to apologise for because somebody else has no idea what they are talking about. Pips have no relationship to % moves, a novice just out of nappies (diapers) should know this.
tool to measure percentage change in MT4
- Gumrai replied Jan 17, 2014
I finally understand why the markets moves are often so illogical, it is the Market Menstrual Cycle. Been bleeding me dry for years!
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 16, 2014
Stop orders require an entry point
(binned per thread starter’s request) EA request
- Gumrai replied Jan 15, 2014
No Ferru, just pointing out that it is important to close MT4 before shutting down the system to save changes. I used to have problems with Firefox consuming 100% CPU and had to force shutdown using Task Manager or even at times, pull the plug. I ...
MT4 Graphs on startup
- Gumrai replied Jan 15, 2014
Also note that you have to shut down MT4 for profile changes to be saved. If you shut down your computer without closing MT4 first, changes made in the last session will not be saved.
MT4 Graphs on startup
- Gumrai replied Jan 7, 2014
I've not had a really good look at the code, but your problem with using smaller lot sizes may be resolve by replacing #define LOTS_PRECISION 1 double CalculateLots (bool useMM, double lotsPer1000, double lots) { if(!useMM) return (lots); ...
Help with Money Money Management Please! (Free EA)
- Gumrai replied Jan 6, 2014
For some reason, I didn't receive notifications of new posts in this thread. Thanks for your kind thoughts
. Xandi has been in contact recently and as I have been feeling much better, I've had a go at adding the break-even option to the TrailBuy ...Change "Open Order TP(target)" if other pending order triggered
- Gumrai replied Dec 19, 2013
You didn't answer Ferru's question If H4 candles start at different times, then the charts will look different Check that H1 charts look the same.
same graphs, not same candles
- Gumrai replied Dec 12, 2013
That will happen if you have already closed some profitable trades. Also the indi doesn't reset the highest and lowest profit totals when a new day starts. This one does.
Please make this Floating Drawdown indicator usable for intraday
- Gumrai replied Dec 6, 2013
Something like this should work, I don't know whether this is the best way or not. static datetime NewBar; if(NewBar!=Time[]) { NewBar=Time[]; double sum = 0; for( int index = 12; index >0; index-- ) sum += Volume[index]; double av_volume = sum/12; ...
Bug in MT4 Compiler?
- Gumrai replied Dec 6, 2013
I don't know because I don't know what changes you have made to your code. But if you make changes to the default extern variables in your code, make sure that you click on reset, to use the new extern values.
Bug in MT4 Compiler?