mrmedia
mrmedia
Friends

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

mrmedia
Added topic MTServer
Does MTServer run under Wine on Linux too? If the app is mostly the same language and compiler etc - then there is a good chance it does
mrmedia
Added topic add this feature
when running an EA you see the orders and tp lines There could be a right click filter feature - where you limit the visual lines shown to orders generated by that ChartID So you could choose to turn this on or off for each chart. i.e. if you have
mrmedia
Added topic two metaeditors side by side
Is there a way to get two metaeditors side by side. So you can use one to look at code and the other for new changes. This works best if when you place the mouse on the other metaeditor - it prompts you to allow a reload. So you can edit either IDE
mrmedia
Added topic alternative to sendkey
There is    long handle= ChartOpen ( "EURUSD" , PERIOD_H1 );    if (handle!= 0 )      {        ChartSetInteger (handle, CHART_AUTOSCROLL , false );
mrmedia
Added topic level of automation
There are more ways to do things now. e.g. charts.mqh Is it possible to automate the DAT and HST builds? i.e. if you backtest 1 min data, then 5 min data then 15 min data etc ........ you create levels of data that allow for consistency. Thus you are
mrmedia
Added topic shift does not work
If you compare "shift" for inbuilt "bands" to this code - they plot differently e.g. 20 2 20 //+------------------------------------------------------------------+
mrmedia
Added topic one direction only
The demo version of MT5 allows long OR short. Is this just the demo? Is it possible for non US brokers to implement MT5 as allowing long+short at same time? If not - why was this a feature
mrmedia
Added topic debugging
I'm new to mq5 To debug I went metaeditor>tools>options>debug>    EURUSD  60MIN Then i can "start debugging" the "MACD Sample" and it steps through to end of init(). But it is the weekend and there are no ticks so the
mrmedia
Added topic force broker feed to refresh?
Is there someway to try force broker feed to refresh. What actions can be taken? Delete data restart and run a script? ########################################## Wondering what best action to take is. 1 min data stopped charting for one pair, but
mrmedia
Added topic will dll speed things up?
When running logic every tick - only looking at open trades and staying away from history trades - the backtesting suffers and takes longer. If you move that logic to a DLL (probably c# or freepascal or c++ sample in mt4passing either each tick or an
mrmedia
Added topic basket pips
I'm trying to tackle an area re: basketpips I'm not sure if i ought concern myself with pipvalue at all. i.e. http://www.earnforex.com/pip-value-calculator Account Currency AUD Currency pair AUDJPY Position size, units 100000 Current AUD/JPY 87.672
mrmedia
Added topic in memory backtesting
Is it possible to get data from mysql and store in memory and have backtester use that data. I was hoping it is possible to speed up backtesting somehow? The articles on 'sql wrapper' look to read into arrays but I'm not sure if the backtester can be
mrmedia
Added topic duration.
How do you get local PC time for init() and deinit() to determine duration if backtesting ? Is a win32 api call necessary
mrmedia
Added topic EA will pause itself during visual backtesting
ok this is tricky, i've got an EA that "pauses" itself. It happens between the end and the beginning of Start(); The only thing it can guess about is a function that passes by reference.    res =  fn1(var1,var2,var3,var4);  
mrmedia
Added topic /templates/default.tpl
creation of "/templates/default.tpl"  = new chart how i like it.  But how do you do that for a new visual mode backtest chart? Thanks
mrmedia
Added topic mt4 lib
Is there an MT4 lib you can include so you can program MT4 style in MT5.   i.e wrapper subroutines. i.e. use VOID Mt4_INIT()  etc
mrmedia
Added topic data spike not showing in OHLC
i have some data - during backtesting - where the bar flicks up - and the trade is closed but then when the bar is finished the high of the bar does not include that upthrust. It appears to have closed independant of the data , but in actual fact the
mrmedia
Added topic Optimization - Is it different logic or does it just rank results = order by
Optimization - Is it different logic or does it just rank results = order by ie. expert properties > Optimized parameter > Balance or Profit Factor or Expected Payoff or Maximal drawdown or drawdown percent
mrmedia
Added topic strategy tester - duplicates
Noticing that  strategy tester will run duplicate tests It does not select unique tests. Finding duplicate test/results/outcomes.   var1 = range to range var2 = range to range var3 = range to range   Is this a memory error
mrmedia
Added topic += operator grrrrrr
profitorig+=OrderProfit()-OrderCommission(); gives 59.51 + 7.37 = 66.88 WRONG profitorig+=(OrderProfit()-OrderCommission()); gives 59.51 + 7.37 = 66.88 WRONG profitorig+= MathAbs ( OrderProfit()-OrderCommission() ); gives 59.51 + 7.37 = 66.88 WRONG
123