- Search Metals Mine
-
honestknave replied Jan 14, 2015I went short off the 38 fib too, but price doesn't seem to want to go anywhere yet. Good for practicing patience!
Ratios & Harmonics: a Different Way to Trade
-
honestknave replied Jan 13, 2015Mr Pip - thank you for taking the time to prepare and upload the 2 videos recently. I haven't fully watched them both yet, but from what I have seen they contain some excellent material. Thank you
Ratios & Harmonics: a Different Way to Trade
-
honestknave replied Jan 8, 2015I may be wrong, but I think the ASH was green?
As simple as possible: 00 level trading
-
honestknave replied Jan 6, 2015I think most of the analysis is in keeping with the spirit of the thread. My apologies if not! image
Ratios & Harmonics: a Different Way to Trade
-
honestknave replied Jan 5, 2015You may (or may not) find this simple indicator useful. It draws the daily open at the hour you specify, rather than from your broker's start of day. As another poster pointed out, everything will look a little strange at the moment because of ...
As simple as possible: 00 level trading
-
honestknave replied Dec 24, 2014That is only the right location if you are running in portable mode. Otherwise, you need to add the indicator to the data folder, which you can find from here (this was a change from build 600 onwards): image Once you've added the indicator, ...
Can somebody help me fix this indicator?
-
honestknave replied Dec 24, 2014Perhaps this will help
can someone help me code this indicator for price action
-
honestknave replied Dec 24, 2014Are you still getting those warning messages in the log, even with the modified code? If so, you may have not added the modified indicator to the correct location (data folder).
Can somebody help me fix this indicator?
-
honestknave replied Dec 24, 2014I took the lazy option - all I've done is compile it with the strict directive and type cast where appropriate to remove the warnings. No idea if it is showing the "right" or "wrong" information as I didn't read the code.
Can somebody help me fix this indicator?
-
honestknave replied Dec 22, 2014Excellent thread broketrader - thank you very much

Learn New MQL Coding
-
honestknave replied Dec 18, 2014I believe it's called AnyCandle.
As simple as possible: 00 level trading
-
honestknave replied Dec 18, 2014Hello Kubiasty, In both your trades, you have entered on the second level after the H1 open. On the GBPJPY, the first level above the H1 open was 185.600. You entered late at 185.700. On the GBPUSD trade, the first level above the H1 open was ...
As simple as possible: 00 level trading
-
honestknave replied Dec 17, 2014If you drag a trade from your Account History tab onto the chart, it also marks it like this.
From--->To arrows indicator
-
honestknave replied Dec 16, 2014A simple example: enum MyEnum { O1, // Option 1 O2, // Option 2 O3, // Option 3 O4 // Option 4 }; input MyEnum MyInput = O1; Yields: image Bear in mind that enums are 4 byte integers, so more code is necessary if you're working with other data ...
MT4 script user Input select-field
-
honestknave replied Dec 12, 2014Put this in OnCalculate() of existing indicator: static datetime LastBar=0; if(Time[0]!=LastBar) { PlaySound("tick.wav"); LastBar=Time[0]; } Or standalone indicator attached below
Indicator that makes a sound at close of candle
-
honestknave replied Dec 12, 2014MQL4 had a major overhaul starting build 600 which changed things like naming conventions and generally made things more strict. Messages about checking return values will be warnings (yellow triangles) not errors (red circles). You are getting this ...
Scripts no longer working
-
honestknave replied Dec 12, 2014One way is to have a bool function to check if the time is between London open and London close. Create some input variables so you can modify the London hours as required: input LonOpen=8; // London Open (broker time) input LonClose=17; // London ...
How to specify to EA not to open new trades after London close