- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Jul 11, 2010Could you elaborate more?
Could an EA be coded for this price action strategy
-
Ronald Raygun replied Jul 11, 2010You need to make sure you have the data in the history center (F2) for the period you intend to test.
Question regarding strategy tester
-
Ronald Raygun replied Jul 7, 2010It's called the MACD... Find one that allows SMA
EURUSD 15min. Heikin-Ashi System
-
Ronald Raygun replied Jul 7, 2010When trading news, slippage is what kills you. Price can jump 100 pips in one tick. Do you really want to get in a trade 100 pips late?
What slippage to use for news trading EA?
-
Ronald Raygun replied Jul 7, 2010Slippage of 0 means if there is no trade available at that price, then there is no trade. I would suggest slippage less than normal spread for a news-based EA. I also suggest you limit the EA to one trade attempt.
What slippage to use for news trading EA?
-
Ronald Raygun replied Jul 7, 2010I would suggest Mozy, Backblaze, Glide GDrive, Dropbox, et al. I personally use DropBox to distribute updated files across all my MT4 terminals.
Is there any way to save MT4 charts?
-
Ronald Raygun replied Jul 7, 2010It sounds like you are trading with no stoploss. Run through your stats. For every winning trade, what is the highest floating loss?
Breakout & RETURN: 97.5% accuracy
-
Ronald Raygun replied Jul 7, 2010Are the SMAs calculated against the price close, or the HA close?
EURUSD 15min. Heikin-Ashi System
-
Ronald Raygun replied Jul 7, 2010Why would you need permission? You wrote it, and presumably you didn't use any proprietary content, so upload away. The source code to the .exe would certainly make it easier to make sure there are no security threats, if you don't mind of course.
Trendline Scalping 4hr timeframe
-
Ronald Raygun replied Jul 6, 2010I have no idea what your hearing range is like, but generally speaking, a high pitched noise from a computer usually means a capacitor is busted or about to break somewhere. Capacitors are found almost everywhere on a computer--especially the power ...
Hardware question: PC auto shuts down....
-
Ronald Raygun replied Jul 6, 2010300W? What are the specs? Also, what sort of ringing sound? Something coming from the internal PC speakers? Or something else?
Hardware question: PC auto shuts down....
-
Ronald Raygun replied Jul 6, 2010Yes, that's a valid concern. Thankfully, Generic Breakout Version 7 thread explains the inputs.
Generic Breakout Version 6 [TD]
-
Ronald Raygun replied Jul 5, 2010This is where it's generally a better idea to break out the time logic. datetime StartTime = StrToTime("23:00"); datetime StopTime = StrToTime("01:00"); string TimeCheck = "Outside Trading Times"; if(StartTime < StopTime && TimeCurrent() >= ...
How do I specify trading hours for my EA?
-
Ronald Raygun replied Jul 5, 2010No. You seem to be missing the point. To the EA, 01:00 and 23:00 happen on the same day. The EA effectively ignores midnight. To compensate for this, you need to check using StrToTime to determine if Stop Time comes before or after Start Time, and ...
How do I specify trading hours for my EA?
-
Ronald Raygun replied Jul 5, 201023:00 and 01:00 would be of the same day (Let's say January 1) instead of January 1, 23:00 and January 2, 01:00
How do I specify trading hours for my EA?
-
Ronald Raygun replied Jul 5, 2010Yes. Once you do something like this however, make sure the time specified is on the proper day. You need to make sure you handle midnight properly.
How do I specify trading hours for my EA?
-
Ronald Raygun replied Jul 5, 2010this is where you may want to start using string conversions. datetime TimeCheck = StrToTime("12:34"); the compare TimeCheck against TimeCurrent()
How do I specify trading hours for my EA?
-
Ronald Raygun replied Jul 5, 2010to get the current hour: int CurrentHour = TimeHour(TimeCurrent()); then you just need the 24 hour time (0-23) and compare against CurrentHour
How do I specify trading hours for my EA?