Pilot65
Pilot65
Friends

Add friends via their profile or user search and you will be able to see if they are online

Pilot65
Added topic How to increase CPU usage ?
Hi, I see a potential for getting higher optimizing speed...Running MT4 optimizer I've never seen more than 14% CPU usage. Inside the box is XP running on a i7-950 @ 3G, so this is a pretty powerful PC, 3G RAM. I see almost no HDD activity so RAM and
Pilot65
Added topic Inconsistent result when looking for the oldest of currently open long orders
Hi, I need to point out the first long order that occurs after a pause of no open long orders (this EA trades multiple orders in the same direction). The code below tries to find this order, and put a marker on it (for debugging) . The EA places its
Pilot65
Added topic ECN and Slippage
Hi, With market orders on ECNs there no point in specifying slippage on OrderSend (its ignored). OrderModify has no Slippage parameter (as it would be pointless). So the only place to use Slippage is on OrderClose... Or is Slippage ignored here too
Pilot65
Added topic BreakEven Error1 problem (SOLVED)
Error1 means: "No error returned, but the result is unknown." Typically one gets this if one makes a change and change nothing... eg doing an OrderModify without changing any of the params. I get many of those from this function , but cant
Pilot65
Added topic There is a bug in MT4 V4.00B409
When backtesting, open chart, and hovering the cursor over the SL or TP symbols the little datawindow shows different data almost every time the cursor touches the symbol. See these screencaptures
Pilot65
Added topic Move OrderHistory to multidimensional Array
Hi, Can you give some advice here... The preliminary goal is to extract pairs of ticketnumber & orderprofit from history, and copy them to multidimensional array for sorting ascending by ticket. This I think is the most reliable way to 'get hold
Pilot65
Added topic Clarification on open/close/buy/sell prices
Hi guys, On testing the newest EA I see some strange things, e.g closing order inside StopLevel zone with profit and without getting an error in the Jourlal. This should not happend IMHO. Any reason why I can e.g close sell at 10 points below
Pilot65
Added topic General time offset calculations
Hi, I need to add or subtract a given amount of time to a given time and date. Lets say we have the given time of Jul 17 2011 22:30 and I want to add 05:00 (5 hrs) to that datetime, giving Jul 18 2011 03:30 How to do this in a simple way? Dealing
Pilot65
Added topic Calculating the cost of 1 lot, for any pair / digits / decimals / broker
How to calculate the cost in dollars of entering with 1 lot at given price ( EntryPrice ) with given StopLoss price ( SLprice ) ? double RiskPoints = MathAbs (SLprice - EntryPrice) + MathAbs ((Ask - Bid)); //The number of points we risk to loose
Pilot65
Added topic Hline select after creation
Hi, Is there a way to programatically select a H-line just after it has been created, so that it can be moved with mouse without having to doubleclick it first
Pilot65
Added topic Visualize tradehistory ?
Hi, does anyone have an indicator or EA that can read the tradehistory and visualize it on the chart, like the B/S symbols we get when backtesting
Pilot65
Added topic The problem of Optimization, and subsequent failure...
Hi, Anyone have some good advice on this problem ? I've made several "good" EAs and they work well on BackTest , actually nearly any piece of cr*p can be optimized for good results when backtested on the same piece of history as the
Pilot65
Added topic O.T: I NEED POWER !
Hi, This post doesn't really have much to do with mql4, but here it goes anyway: I've spent a month developing the latest EA, and this puppy does seem to have some potential... I get roughly the same result testing with Ticks and ControlPoints, and
Pilot65
Added topic How to get REAL and TRUE history data ?
Hi, Is there somewhere to get the actual real account pricedata for a specific broker/account type, for offline backtesting? My recent EURUSD 'superscalper' turns 500 into 2Mill in a year on Alpari demo, using the standard history data. Problem is
Pilot65
Added topic Price and Stop calculations for StopOrders
Hi, Does this look right to you? I'm thinking mostly on the price & stoplevel calculations. This code seems to work ok but 'variations' work even better... Does the check on OpenPrice look ok ? I have assumed that the final stops should be
Pilot65
Added topic Filtering out news events...
Hi, I'm in the process of improving every little aspect of my new scalper, everything helps, sometimes a lot, and now I want to avoid entering around news and preferably get out of the market at these times. This EA is like most other EAs, running
Pilot65
Added topic Running Tester with Custom Spread Setting??
Hi, I have several very good scalping systems, but not surprizingly they're only good when spread is (very) low. I'd like to optimize / adjust these under 'adverse' spread conditions in the hope that they will then work well, and work even better
Pilot65
Added topic One of my terminals will not create statements !
Hi, I have 3 terminals (V225) running on one PC, all are installed in different root directories. Two of them will create statements, but one will not. The html file is nowhere to be found and I don't think its even created. This terminal is the only
Pilot65
Added topic StopOrder turns into a MarketOrder ??
Hi, I use this code to send a limit order (for some unknown reason I have to use a stop order to get it to work as I expected a limit order would do, dunno why....). But the problem is that even though I've hardwired Type=4 it sends one stop order
Pilot65
Added topic What happens here ?
OrderSelect(OrdersTotal()-1, SELECT_BY_POS, MODE_TRADES);// Does this point to the last placed (or 2nd last) active order, or to the first or what