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 What are your forward results after optimizing on recent data ?
I could figure this out on my own but it would take weeks or months of forward testing, so I'd just like to hear what your experience is with this. Some indicator driven EAs can work quite well, but its well known that these need frequent optimizing
Pilot65
Added topic 100 bucks to the Wiz who can fix this for me ASAP !
Slight problem with linear interpolation of data, where X is not evenly spaced (missing bars)
Pilot65
Added topic Linear or Spline interpolation of 'staircase' indicator data ?
Hi, This is a MA indicator that is reading MA off a higher TF and used in a lower TF... In its current state the line appears as a staircase, drop it on a 15M TF and you'll see. I want it smoothed so that there is a distinct change for every low TF
Pilot65
Added topic Tester: simulate ControlPoints mode in forward test ??
Hi, Some EAs perform spectacularly well when backtested using controlpoints mode, but quickly empty the account when tested in every tick mode. I read the help file about the modes but didn't get any smarter... Would it be possible to apply some sort
Pilot65
Added topic Improve this debug tool
Hi, anyone wanna modify this function a little ? Its a very useful tool for testing / debugging / visualizing stuff. Problem is that it places multiple Vlines at the same bar (typically on for each tick) and even a short testrun can result in
Pilot65
Added topic Vista (Home Premium) again !
Just FYI I have never used Vista, and never will. But I have a fellow trader in another city with Vista (Home Premium) on his PC, and he could not get my EAs to work. All sorts of errors appeared in the Journal, so I went in via RDP(or similar) and
Pilot65
Added topic Calculate risk and size, nearly there but not quite...
double DollarsToRisk = ( RiskPercent / 100.0 ) * AccountBalance ( ) ; double SpreadCost = Lots * MarketInfo ( Symbol ( ) , MODE_TICKVALUE ) * MarketInfo ( Symbol ( ) , MODE_SPREAD ) ; //In dollars,verified ok on all pairs! double
Pilot65
Added topic Is it possible to import trade (account) history and show the trades on the chart ?
Topic basically says it all. I have a pal in another city and he is trading manually and getting very good results. I doubt he has much of a trading plan, non the less he is almost doubling his account every week. If I could take his history and show
Pilot65
Added topic Can you spot any errors in this TrailingStop function ?
It seems to work ok on test, not getting any errors. But still not 100% sure its ok. Can you check it over ? //---------- Trailing Stop --------------------------- void TrailingStop ( double TrailingStop , double TrailingStart , int TrailInterval )
Pilot65
Added topic Getting errors on this TS code
Hi, here is a test EA for checking my (soon to be) drop-in TrailingStop routine. The TS seems to work but I get flooded with " OrderModify error 4051" and "invalid ticket for OrderModify function" errors. Just run the EA on 1M
Pilot65
Added topic Capital At Risk (not getting it right)
Can anyone see whats wrong here? It calculates true risk, that is $ loss if all open trades goes to StopLoss, and displays that in an info board in the UL corner. But it shows too low values, at least some 500% too low. Seems to vary from one symbol
Pilot65
Added topic Why won't these objects be deleted ?
I'm calling this function from the EA's deInit, But none of the objects are deleted... Any idea why ? //---------------- DeleteInfoBackground ------------------------- void DeleteInfoBackground ( ) { //Objects created has names like: RecW11, RecW12
Pilot65
Added topic Broker digits Vs Symbol digits HowTo ?
I want my EA to work seamlessly with 4-digit brokers and 5-digit brokers AND 4-digit and 2-digit symbols (E.g EURUSD and USDJPY) with 4-digit brokers AND 5-digit and 3-digit symbols (E.g EURUSD and USDJPY) with 5-digit brokers AND have external
Pilot65
Added topic How to calculate True Risk before sending an order ?
Hi, I recently had a bad experience with unadequate MM... Now I'm going to do it RIGHT. Goal: Find lot size for a given true risk ( in $ or % of Balance) so I know beforehand how many dollars (or %) will be lost if the worst happends Given: -Balance
Pilot65
Added topic Is there hidden application backdoors in MT4 ??
I am NOT accusing MetaQuotes for for anything here, I'm only speaking up on some concerns that I have. I would like MetaQuotes to submit their sourcecode for scrutiny by independent western security firms, and have the code ( including updates)
Pilot65
Added topic Was there a way to kill an Expert ?
As a safetymeasure I call this early in the Start function: //---------------- SaveAccount ------------------------ bool SaveAccount ( ) { if ( AccountBalance ( ) < BalanceCutOff ) { Alert ( "In order to protect the account "
Pilot65
Added topic Looks like I finally made it!
Well... after about 9 months of intensive programming it finally looks like I've succeeded with a signalling system that really works. This "unreal" graph is a backtest result. But after two weeks of forward testing on demo the preliminary
Pilot65
Added topic Indicator: array gets wiped every Init...
Set out to make a super simple indicator, shouldn't take more than 15 mins I thought...Not this time! Indicator: show spread history (as data comes in) as bars in a separate window. Problem: all indicator bars are cleared then changing TF. Looks like
Pilot65
Added topic Hopes for MQL5...
Our indicators and EAs are getting more and more complex, and the programing enviroment (the Editor) is becoming more of a limitation. I'm not used to this and find it fairly frustrating at times. I dunno what to expect of MQL5, and this may come a
Pilot65
Added topic Where to find constant declaration values -SOLVED-
E.g. "OP_SELL" is a system constant but what is its value ? Found it in MQL4 reference / Standard Constants