- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Oct 31, 2008It's definitely the indicator causing it. I'm still trying to reverse-engineer the code.
Trading System Using Relative Strength-Part 2
-
Ronald Raygun replied Oct 31, 2008The way I'd probably code it in was to count how many bars ago the last overbought and oversold cross was, and then trade if that figure was within x bars. Would that be workable for the system?
The Force 5min system
-
Ronald Raygun replied Oct 31, 2008The main thing preventing an EA from being developed is the little vague portion. Rule "a" in both the buy and sell criteria.
The Force 5min system
-
Ronald Raygun replied Oct 31, 2008Christmas is the greatest test of all mechanical systems. I just turn my EAs off till new years
Signals for Simplicity
-
Ronald Raygun replied Oct 31, 2008I'm working on a resetting function in the EA to hopefully refresh the CCFp values every bar. If that fails, I guess I have to go the same route as FerruFX. Anyone care to help me put the indicator inside the EA? [edit] I found an interesting twist ...
Trading System Using Relative Strength-Part 2
-
Ronald Raygun replied Oct 30, 2008The EA already has a HAS filter put in...
Powerful 1 Min Scalping System (Fx Prime)
-
Ronald Raygun replied Oct 30, 2008The whole concept of the code is to set a variable like an on/off switch. When all the colors are the same the switch is on When the colors are different the switch is off That code I put checks to see if the switch is on/off and trades with that ...
need help figuring something out.
-
Ronald Raygun replied Oct 30, 2008string SignalTaken = "None"; start() if(Line1 = blue && Line2 = blue && Line3 = blue && SignalTaken = "None") { SignalTaken = "SignalTaken" OrderSend()... } if(Line1 = red || line2 = red || line3 = red) SignalTaken = "None"; //Do reverse for sell
need help figuring something out.
-
Ronald Raygun replied Oct 30, 2008I trade this system with two simple things: Enter: CCI34 Cross 0 in the direction of the CCI170 Exit: CCI34 Cross 0 opposite the CCI170. The exit is in place to help me get out of false breakouts early. That's it, I generally exit earlier when I ...
Powerful 1 Min Scalping System (Fx Prime)
-
Ronald Raygun replied Oct 30, 2008I think I'm on the verge of my first spud trade. 5M stoch has been at or near 90 for awhile now, and that has caused the 15M, 30M and 1H to turn up or tick up. the 4H seems to stubbornly stay down, so I expect this to be a counter-trend trade. I'm ...
Spud's Predictive MTF Stochastics
-
Ronald Raygun replied Oct 30, 2008Try changing the chart to EJ, and see what happens. I think the EJ in EJ Candle time stands for EURJPY
Powerful 1 Min Scalping System (Fx Prime)
-
Ronald Raygun replied Oct 30, 2008FerruFX, I know you don't put external buffers in your indicator. How have you been able to solve that problem I'm having with the CCFp indicator? Did you have to convert the indicator into some sort of function, and then call that function?
Trading System Using Relative Strength-Part 2
-
Ronald Raygun replied Oct 30, 2008Depends on the indicators you're using, if you're using custom indicators, it's a good idea to post those too
Powerful 1 Min Scalping System (Fx Prime)
-
Ronald Raygun replied Oct 30, 2008The code is posted below. There is nothing assigned as "EMPTY" EA //+------------------------------------------------------------------+ #define SIGNAL_NONE 0 #define SIGNAL_BUY 1 #define SIGNAL_SELL 2 #define SIGNAL_CLOSEBUY 3 #define ...
Trading System Using Relative Strength-Part 2
-
Ronald Raygun replied Oct 30, 2008could you elaborate? Where should I not be using EMPTY?
Trading System Using Relative Strength-Part 2
-
Ronald Raygun replied Oct 30, 2008I figured out the problem, but I'm not sure how to fix it. There are some instances where the indicator returns a value of 2.1 billion and stays there. Anyone know why that happens?
Trading System Using Relative Strength-Part 2
-
Ronald Raygun replied Oct 30, 2008I'll tell you now that you're looking for the holy grail, and I guarantee you that such a thing doesn't exist, not even this system. I can tell you that this system comes close. And as I see it, it's as close as you can get. So, go ahead and go live ...
Powerful 1 Min Scalping System (Fx Prime)
-
Ronald Raygun replied Oct 30, 2008It could be an updating issue. But truth be told, I'm crap when it comes to coding indicators.
Trading System Using Relative Strength-Part 2