- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Jun 22, 2010Why use flags? What does the flag trigger later in the code?
How do I set a flag for the following condition?
-
Ronald Raygun replied Jun 21, 2010I thought I wrote an EA for that thread already. url
In need for an EA to my trading system
-
Ronald Raygun replied Jun 21, 2010I'm not sure you can do it from the exact same directory. And Dutch_Trader, go to Program Files [Metatrader Folder] Make a copy of the folder Rename the folder Go into the new folder Run Terminal.exe
Can I run multiple instances of the same MT4 platform?
-
Ronald Raygun replied Jun 20, 2010iMacros requires firefox to be open, but otherwise, no. It's capable of opening web pages on its own and manipulating them as necessary,.
easiest way to get realtime fx feed data?
-
Ronald Raygun replied Jun 18, 2010IMO, 16 input neurons is hardly enough to cover every possible scenario.
Extreme scalping using neural networks - EA/Manual
-
Ronald Raygun replied Jun 18, 2010Perhaps you should ask the power(s) that be (Twee)
Extreme scalping using neural networks - EA/Manual
-
Ronald Raygun replied Jun 18, 2010Cheers rfking2 and Eureka. rfking2, I actually have already done that for a self-optimizing EA. There's a hitch however, I do not want to risk having the trolls and promoters who watch this space steal and sell the EA. I'm currently acquiring ...
Old Dog with New Tricks
-
Ronald Raygun replied Jun 18, 2010Turning points IMO are too finite to use as simple S/R. I just define S/R 'zones' by calculating the 'bar density'--number of bars at a certain price point--in a given range of bars.
How to recognize a swing direction
-
Ronald Raygun replied Jun 17, 2010Why use an FTP server? Just have the master excel file make slave excel files in the experts/files folder and have the EA read the slave excel files
Trading using Excel and MT4?
-
Ronald Raygun replied Jun 15, 2010MBT is an ECN broker which requires trades to be placed first and then the order modified with the sl/tp.
Pre-programmed metatrader trades
-
Ronald Raygun replied Jun 15, 2010Should be midnight broker time. Basically, while the EA is waiting for the initial range to form, it reoptimizes itself. Yes It's more a backtest than an optimization, but yes. No. InitialRange bars are the number of bars after midnight (day start). ...
Old Dog with New Tricks
-
Ronald Raygun replied Jun 14, 2010I'm thinking more along the lines of P2P / BitTorrent. The amount of data that trade terminals would be passing back and forth would be too high for a central database to manage. Problem I'm coming across with self-optimizing or self-testing EAs is ...
Generic Breakout Version 7 [TD]
-
Ronald Raygun replied Jun 13, 2010There are several london breakout type threads, I first wrote Generic Breakout for the 7-9AM gu strategy thread (or something like that). Updated in 1st post. (AutoDetect5DigitBroker). My feeling is if you cannot calculate properly the correct ...
Generic Breakout Version 7 [TD]
-
Ronald Raygun replied Jun 12, 2010My 2 cents... Try using this webpage: url It tells you the number of access points that your computer can see, and more importantly, the channel those access points are on. I use it when I am in my school's dorms and trying to improve the ability ...
Unable to View MetaTrader Folder Content
-
Ronald Raygun replied Jun 11, 2010You need to do that manually. //Calculate dollar profit per pair. string Pair[]; double PairProfit[]; for(int TC = OrdersHistoryTotal(); TC >= 0; TC--) { OrderSelect(TC, SELECT_BY_POS, MODE_HISTORY); string PairMatch = "No"; int PairShift = -1; ...
How do I return the profit value of a specific pair in MT4?
-
Ronald Raygun replied Jun 11, 2010I'm looking at this particular section: f (buyFlag == false && Buy1 < Buy2 && Buy4 > Buy5) Order = SIGNAL_BUY; buyFlag = true; if (sellFlag == false && Sell1 > Sell2 && Sell4 < Sell5) Order = SIGNAL_SELL; sellFlag = true; Change it to this f ...
How to find out price moving below the close of the previous bar?