- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Jan 13, 200916/20 wins = 75% win rate. That's pretty good. What's your Reward:Risk?
Slingshot-30 Min. PA System
-
Ronald Raygun replied Jan 13, 2009The system looks good as I see it. Here's what I think needs work: This seems like a bull/bear trap type system. Those systems work best after long candles. So instead of setting the high/low minimum to 15 pips, make it open/close range of 100 pips. ...
Slingshot-30 Min. PA System
-
Ronald Raygun replied Jan 12, 2009Version 2 is a modification which was not made by Ptournis. ^eagle^ I think made that modification
eur/usd scalping method
-
Ronald Raygun replied Jan 12, 2009it needs to be start() { //The bracket above is important bool CanTrade = False; if (TimeCurrent() >= StrToTime ("08:30") && TimeCurrent() <= StrToTime ("19:30") CanTrade = True; { int Order = SIGNAL_NONE; int Total, Ticket; double StopLossLevel, ...
Setting Start Time for EA?
-
Ronald Raygun replied Jan 12, 2009Have you thoroughly tested the ADX? or did you put it on a chart and it "looked good"? I ask because it is my experience that most requests I get for EAs are from people who want to use the EA to test profitability. I try to avoid that as much as I ...
Generic EAs
-
Ronald Raygun replied Jan 12, 2009Because how often does a pattern like that occur? Not very. You have shown the perfect scenario. (As I see it). Let's tighten the range, and you'll see that Heiken Ashi lags considerably. If you can get a way to make sure that type of system doesn't ...
Generic EAs
-
Ronald Raygun replied Jan 12, 2009Frank, What you say is true. But remember that all mechanical trading is based off of the theory that the market repeats itself. With that in mind, you just try to find a robust or self-adapting method for breakout-trading.
2 Trades per Week (Weekly scalping&First Strike modification)
-
Ronald Raygun replied Jan 12, 2009Look at the price, not at the heiken ashi bars. I'd say you'd be capturing 1/4th of the move each direction if you traded straight heiken ashi rules.
Generic EAs
-
Ronald Raygun replied Jan 12, 2009Look at the 1st post. Trade according to the 1st post
eur/usd scalping method
-
Ronald Raygun replied Jan 12, 2009if (TimeCurrent() >= StrToTime("08:30") && TimeCurrent()<= StrToTime("19:30") CanTrade = True This area goes under the Start() but before your entry logic.
Setting Start Time for EA?
-
Ronald Raygun replied Jan 12, 2009That was taken care of (supposedly) in the lastest EA I attached. With the new EA, only one bar has the signal.
eur/usd scalping method
-
Ronald Raygun replied Jan 11, 2009Unfortunate aspect of COG. I generally use COG to help me identify potential turning points and forecast future price. That's really all it's good for.
Arowara Method
-
Ronald Raygun replied Jan 11, 2009bool CanTrade = False; if(TimeCurrent() > StrToTime("02:30")) CanTrade = True; This code tells the EA that if the time is greater than 2:30 broker time, it can place a trade.
Setting Start Time for EA?
-
Ronald Raygun replied Jan 11, 2009There should be one out already. I think it's in the 'Traffic Lights" thread
Generic EAs
-
Ronald Raygun replied Jan 11, 2009Instead of using price, the smoothed heiken ashi uses moving averages. That's really the only difference. If you want to convert to the regular heiken ashi, just set the method and period to 0 and 1 respectively.
Generic EAs
-
Ronald Raygun replied Jan 10, 2009smoothed heiken ashi is simply another indicator. Based off of Heiken Ashi. Google it if you need a better explanation. It's kinda hard for me to explain. And this closes all trades with the same symbol as the chart the EA is attached to.
Generic EAs
-
Ronald Raygun replied Jan 10, 2009Here is another EA by request. It closes all trades by symbol if the heiken ashi is opposite the trade.
Generic EAs
-
Ronald Raygun replied Jan 9, 2009I do =D My trading strategy involves turning EAs on and off based on how I perceive the market. I'm trying to remove me from the equation and come up with a mathematical way to determine trending/ranging. The ultimate goal I see for myself in forex ...
Determining Trending vs. Consolidating
-
Ronald Raygun replied Jan 9, 2009That's all good and well, but what about the other slope direction lines? (I see more than 1)
eur/usd scalping method