Jump to content

stovedude

Members
  • Posts

    229
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by stovedude

  1. These are copies of Ilan or Robot 2015 with the exception of separating the Buys from the Sells to account for trend. So yes, trend is the biggest question here. I know for a fact that you can't measure trend on any one single TF (at least not indefinitely) without using all of the TF's together as a group. If you try using one TF, it will bite you sooner or later due to lag.
  2. After running the program, just click the All button in the lower left hand (expand the window to see everything) and wait for it to find everything, then click the All down arrow button, click Backup and then click Clear. If that doesn't do it, it is probably using a non-standard method to write to the registry or a hidden file or something. Another method is to do a fresh install on another machine, but first use a Registry Snapshot or System Snapshot utility before running the installation, and then running it again after everything is installed and ran to see what got changed.
  3. It will take trade on demo as long as the mocrosoft visual c++ Debug Library error window isn't closed, which crashes the terminal.

     

    I never had a crash when I attached on demo. Perhaps you are missing the c++ runtime library or part of it? I did get some trades on forward, but pretty much losers, so I abandoned the EA altogether.

  4. I would like to add a shift feature to this indicator, so that I can adjust the start time as my platform is GMT +2. I watch the 4 hour open times of candles.

    http://www.mediafire.com/?3v4824zdl0kq6aq

     

    Many thanks.

     

    The only problem with shifting for GMT is that you need to shift 2 hours, rather than a full 4-hour candle, but this version will shift the Open prices back 2 candles. In other words, you will need to use a 60-minute TF setting and a Shift of 2 to see a 2 hour shift. It will plot the new shifted Open line in the current non-shifted position.

    http://www.4shared.com/file/tFzxKVVX/q-Opn_Line.html

  5. Your calculation is correct. However, you cannot set an expiration for OP_BUY or OP_SELL, because these are direct market orders. You will have to use pending orders: OP_BUYSTOP (if price is below that level), OP_BUYLIMIT (if price is above that level), OP_SELLSTOP (if price is above that level), or OP_SELLLIMIT (if price is below that level). Also, you cannot set pending orders closer to the current price than the stop level ( MarketInfo(Symbol(),MODE_STOPLEVEL) ). Hope that helps.
  6. I don't trust this EA, especially when you see this code:

    if (TimeCurrent() < gda_592[TimeYear(TimeCurrent()) - 1999] && TimeCurrent() > gda_596[TimeYear(TimeCurrent()) - 1999]) gi_500 = gi_308;

     

    gda_592[8] = D'28.10.2007 01:00';

    gda_596[7] = D'25.03.2006 22:00';

    gda_592[7] = D'29.10.2006 01:00';

    gda_596[6] = D'26.03.2005 22:00';

    gda_592[6] = D'30.10.2005 01:00';

     

    it seems to be adapted for performing well in backtests

     

    I believe most of these dates are for daylight savings time adjustments throughout the different years.

  7. Ok. I figured it all out. It was a bug. It was not calculating the DRI of the current bar, and the buys were not being filtered at all. I have made 2 versions. The first one is the standard one that will calculate on the current bar (probably with more false signals), and the second will calculate only on closed bars, but both will print arrows and alerts on the current bar.

    http://www.4shared.com/file/UKyCf-pA/Dynamic_Range_Indicator_TM_.html

×
×
  • Create New...