- Search Metals Mine
-
honestknave replied Nov 3, 2015Hard to say, but quite possibly. Some of the indicators may be badly coded, for example recalculating every bar every tick. They may also have additional buffers for visuals that you don't need in your application. By making internal functions, you ...
I will code your EAs and Indicators for no charge
-
honestknave replied Nov 3, 2015I imagine you are getting an array out of range error message in your Experts log (if shift is already the oldest bar on the chart, you can't add 1 to it) #property strict #property indicator_chart_window #property indicator_buffers 7 double ...
Easiest way to count bars from X to Current Time?
-
honestknave replied Nov 2, 2015Not at all, keep posting. This thread has been on the cusp of dying for months - it needs some life.

Ratios & Harmonics: a Different Way to Trade
-
honestknave replied Nov 2, 2015
I'm a little confused. PS: IMHO stands for "in my humble opinion"... not sure if that is the source of the confusion?I will code your EAs and Indicators for no charge
-
honestknave replied Nov 2, 2015Because max bars in chart only applies when a chart is opened. So if max bars in chart is 5000 and you open an M1 chart, after 1 day your chart will have 6440 bars (the original 5000 bars plus 1440 new M1 bars) The terminal doesn't do a very good ...
I will code your EAs and Indicators for no charge
-
honestknave replied Nov 2, 2015
OnTimer is definitely the right place (IMHO) to run code accessing multi-timeframe, multi-symbol... but the amount of resources required for what you're describing is substantial to say the least. Try dropping the max bars in chart settings ...I will code your EAs and Indicators for no charge
-
honestknave replied Nov 2, 2015Hi George, Some great thoughts there, and I think I understand what you're looking for. But, that would require substantial modification which sadly I don't have the free time for right now
Nevertheless, I will continue to give it some thought ...MADdash (Moving Average Distance)
-
honestknave replied Nov 2, 2015Hello Art5, Unfortunately, there's currently no ability to do this, but I will look into it for future releases. It may be a simple fix, or it may need more time

MADdash (Moving Average Distance)
-
honestknave replied Nov 2, 2015Hello pcorneli, I'm sorry to read you're having some problems with the templates. The behaviour you describe shouldn't be caused by MADdash - have you tried playing around with your terminal settings here?
MADdash (Moving Average Distance)
-
honestknave replied Nov 2, 2015Hello Chairman, thank you for your comments. I'll certainly keep it in mind for future releases
I imagine it would require quite a bit of human input to the settings in order to get the thresholds correct... depending on what timeframes ...MADdash (Moving Average Distance)
-
honestknave replied Nov 2, 2015Hello Drona, I imagine you could create an indicator (with #property indicator_separate_window) that makes iCustom calls to your .ex4 indicator. Just copy the buffers straight over and it should work. Good luck

MADdash (Moving Average Distance)
-
honestknave replied Nov 2, 2015Hello rvdemm, thanks for your comments
I'm afraid I don't have the time at the moment to take on new projects... I'm not doing a very good job of keeping on top of the current ones!
But there is a great thread here where you may be able to ...MADdash (Moving Average Distance)
-
honestknave replied Nov 2, 2015Today's trade that got away: (the BE stop was hit pretty much to the pipette)

Ratios & Harmonics: a Different Way to Trade
-
honestknave replied Nov 2, 2015You're trying to calculate the third using the indices of the high and low, not the value of the high and low. #property strict #property indicator_chart_window #property indicator_buffers 4 double dayHigh[], dayLow[], upper3[], lower3[]; int ...
Easiest way to count bars from X to Current Time?
-
honestknave replied Nov 2, 2015Nice area of interest there
Some high impact USD news hitting in 5 mins, so that may set the tone for the rest of the session image Ratios & Harmonics: a Different Way to Trade
-
honestknave replied Nov 2, 2015Try this out, see if the visuals help: #property strict #property indicator_chart_window #property indicator_buffers 2 double dayHigh[], dayLow[]; int OnInit() { SetIndexBuffer(0,dayHigh); SetIndexBuffer(1,dayLow); SetIndexStyle(0,DRAW_LINE); ...
Easiest way to count bars from X to Current Time?
-
honestknave replied Nov 2, 2015Meh, stopped out at BE. I wasn't too keen on that short so I'm happier to be out. The 2 EU trades from today:
Ratios & Harmonics: a Different Way to Trade
-
honestknave replied Nov 2, 2015Hi arjan, Nice straightforward analysis
I've taken a couple of trades on the EU this morning, a counter-trend EU long off 1.1000 which I exited a little early. Currently short EU, which isn't looking too special but I'm at BE so let's ...Ratios & Harmonics: a Different Way to Trade