- Search Energy EXCH
- 1,159 Results (26 Threads, 1,133 Replies)
-
ecTrade replied Mar 16, 2010You mean it hadn't done a "Close_All" yet? If so, that could be ... By the way, I just modified the Profit Monitor EA to include Recurring option which, if you leave set to "true" (after setting Enable to "true"), it will continue automatically. Or, ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 16, 2010Which Option? I discovered in Option 4 another error that caused it to close early. Maybe this is what you're talking about? ... I don't know? Although, no, I haven't seen any results like that. Which broker? With most American brokers, it could be. ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 16, 2010It's just an arbitrary number (as an example) which means means 50 cents US dollars or, whatever currency you are using. Basically you set it to whatever value you want it to close at. No, but like I said, it might be good to have that option. Yes. ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 15, 2010Yes, except you will have to add the code (one or two lines) to the EA's in order to get it to "suspend." Other than that, all you need are the magic numbers and the same broker account (i.e., regardless of chart). The only drawback here though is ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 15, 2010Probably because the Option is set to "0," I think? If so, set it to 1 or 2. I think I need to set it to 1 as a default. The "0" option is good to have though (it says "IDLE" in status display), because it allows you to suspend trading ... although ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 15, 2010What, you need "pads?" I'm just in the process of adding a "switcher" option, that switches between Buy and Sell and has the option to hedge when it gets too "deep." That should help. In fact I just got the switcher working and added a trailing stop ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 15, 2010Have you had a chance to backtest it yet? It may take 5 or 6 trades to occur before it actually closes the position. While mainly when you get "behind" like this, what you trying to do is find the best place to quit or, break even ... i.e., where ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 15, 2010It will close all automatically after you input Target Price and then "set" it with Close_All_Set_0_1 (although this is going to change). The other two are options that you choose in the property box after you open the EA and want to close out early ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 14, 2010Nope, that doesn't work either. I even set the delay to 10 seconds (10,000 milliseconds) but still no luck. Of course if I set the properties beforehand and leave it to run automatically, and am satisfied with the settings, that may be all that's ...
Updating EA Before Next Tick
-
ecTrade replied Mar 14, 2010Oh well, the market's just opened and I'm basically having the same problem. The EA loads okay but, once it's initialized I can't open the properties box. Maybe if I change it so it only updates every half a second or so? Like I said before, it's a ...
Updating EA Before Next Tick
-
ecTrade replied Mar 13, 2010Okay, it looks like I fixed it. Now it looks like it's working the way it should on a Standard account. Will probably email you a copy in the next day or two. You will probably have a lot better results too.

Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 13, 2010Okay, I put the MotherFunction() (hmm ... why does that sound like a dirty word?
) in init() and left the start() function empty, but I couldn't open the Properties box after loading the EA. So I deleted the start() function and got an error ...Updating EA Before Next Tick
-
ecTrade replied Mar 12, 2010So, do I just put the MotherFunction() in init() and leave the start() function empty? int init(){ } int start(){ MotherFunction(); } void MotherFunction(){ while(true){ RefreshRates(); // do your stuff here Sleep(100); } }
Updating EA Before Next Tick
-
ecTrade replied Mar 12, 2010What, are you saying it's closing out early like before? If so, I think I know what the problem is. It's because I'm writing and testing it on a mini account. And no, I haven't noticed any problems here. However, I do have a standard demo account, ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 12, 2010Yeah, we're just getting started ... hopefully.

Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 12, 2010Hey, did you see what I did here? The most recent version of Shake and Bake will have this incorporated so you can suspend all trading (with multiple versions of EA) with one click on Profit Monitor. You can also do this with other EA's by modifying ...
Help with EA ... More Fun with Dazz
-
ecTrade replied Mar 12, 2010Yeah, that sounds like it should be fine. As for testing it on the weekend, I think all I need is to display something in the comments field, to show that it's actually generating a signal. That's about all can do for now, although I don't think ...
Updating EA Before Next Tick
-
ecTrade replied Mar 12, 2010You mean within the 100 millisecond time frame, right? It's sure a lot better than having to wait five or ten minutes sometimes!
Even if you're off by a few seconds (with ticks on another chart) it could potentially mess you up.Updating EA Before Next Tick
-
ecTrade replied Mar 12, 2010The init() variables and/or functions are also loaded only one time, that is, until it's reset, correct? Cool! It will be interesting to see how it works come Sunday.

Updating EA Before Next Tick