- Search Energy EXCH
-
RaptorUK replied Sep 5, 2011Maybe there is another Alert( . . . open the code in Meta Editor and use Ctrl + F to find Alert
How to disable an alert function?
-
RaptorUK replied Sep 5, 2011Add the Print statement, compile the code, run it on M1, look at the Experts tab . . . int start() { double MA,RSI[]; ArrayResize(RSI,Volatility_Band); int counted_bars=IndicatorCounted(); int limit = Bars-counted_bars-1; Print("limit = ",limit); // ...
Indicator is not "dynamic"
-
RaptorUK replied Sep 5, 2011Extended XP support runs until April 8, 2014
Windows XP, Vista, Win7: which do you prefer?
-
RaptorUK replied Sep 5, 2011What makes you think it's supposed to recalculate on every tick ? from what I can see it only recalculates when a new bar arrives . .
Indicator is not "dynamic"
-
RaptorUK replied Sep 5, 2011Yes it would be pointless . . . unless you use a 64 bit OS, there is a 64 bit version of XP. Correct, I had access to Pro and Ultimate version of Win 7 so I installed Ultimate . . . it's not needed for trading . . I have 6GB . . it's been enough so ...
Windows XP, Vista, Win7: which do you prefer?
-
RaptorUK replied Sep 5, 2011Windows 7 x64 Ultimate . . . I never have UAC issues . . . I ran Vista but never really liked it . . . XP was great in it's day but it is getting old, if you want to run more than 3GB RAM you need x64 . . . if you want decent driver support for ...
Windows XP, Vista, Win7: which do you prefer?
-
RaptorUK replied Sep 5, 2011To post an image do this . . . image image In your code where it says . . . Alert(msg); do this . . // Alert(msg);
How to disable an alert function?
-
RaptorUK replied Sep 5, 2011That is the wrong alert . . . . look for Alert(
How to disable an alert function?
-
RaptorUK replied Sep 5, 2011Post the section of code where the Alert is . . . image
How to disable an alert function?
-
RaptorUK replied Sep 5, 2011You are welcome . . . learning all this stuff takes time, seems like you are learning
keep going and you will get there.Make EA get custom magic number...will this work?
-
RaptorUK replied Sep 4, 2011Some things don't fully work in the Strategy Tester . . . e.g. Alerts
url Make EA get custom magic number...will this work?
-
RaptorUK replied Sep 4, 2011Why don't you test it with the Strategy Tester ?
Make EA get custom magic number...will this work?
-
RaptorUK replied Sep 4, 2011( > 2V ) != experienced coder
Extracted Thread (per thread starter's request)
-
RaptorUK replied Sep 4, 2011You can do something like this to determine if an order has just closed and therefore to grab the chart . . . // print chart when trade has closed . . . if (Chart_Grabs) for(int OrderPosition = OrdersHistoryTotal()-1; OrderPosition >= 0 ; ...
orders screen capture ea
-
RaptorUK replied Sep 4, 2011Sorry, it's my own work and not giving it away or selling it. Happy to help you make your own if you want some help . . . take a look here for starters: url
orders screen capture ea
-
RaptorUK replied Sep 4, 2011Why don't you just use the TF for your MagicNumber ? you don't need to put anything to do with the Symbol into the MagicNumber because you can get the Symbol from the Order info . . . OrderSelect(. . . ); OrderSymbol();
Make EA get custom magic number...will this work?
-
RaptorUK replied Sep 3, 2011OK, maybe I misunderstood what you were describing, I understand the use of a GlobalVariable for a mutex . . . I guess the other is just to prevent two EAs using the same root number for it's Object names, etc ?
Make EA get custom magic number...will this work?
-
RaptorUK replied Sep 3, 2011The bar count goes from right to left . . that is how it is, the currently forming bar is bar 0 the next bar to the left is bar 1, then bar 2, etc What FXEZ said is correct . . . you need this . . double HighestAfterOrder = iHigh("EURUSD", 0, ...
Watch this example and correct it