nadiawicket
nadiawicket
nadiawicket
Added topic Loop needs to only print 1 z
//+------------------------------------------------------------------+
nadiawicket
Added topic METAQUOTES PLAY MQ4 IN MT5 BACKTESTER
METAQUOTES will never have MQ4 files play in the MT5  backtester  ? They already have MQ4's MT4 Latest Build ; just use it to "translate" into the MT5  Signals are all MT4 and most use MT4 by far after 10 years makes me wonder Id like
nadiawicket
Added topic Simple continue syntax issue
       for ( int x= 0 ; x< 100 ; x++)         {          if (x== 1 )
nadiawicket
Added topic At a lack of Official MQL4 Profiler, MicroSecond count good practice to detect efficiency issues?
Profiler does not work on backtester  (live charts profiler not good enough) and I need high quality code; should I be looking at other software?  MQL4 Solutions only;  MicroSecond count good practice to detect efficiency issues
nadiawicket
Added topic Why multi core mt5 when single core mt4 is better hardware management?
Just assign a single core per mt4 better than 16 core 1 mt5 hardware wise?  Sleeping forums
nadiawicket
Added topic What takes most speed?
Trying to save me run time by generating a single string array instead of 2 int arrays. Is this better for speed in mql4 or doesnt really matter
nadiawicket
Added topic Memory efficiency with array trickery/ simulations
Trying to prevent excess arrays; anyone have an easy way to have for example string Array[0]="_126" be able to  be subtracted straight from an integer value? Like typecasting or something? Array[0]="_126";  I want to subtract Bars-Array[0]
nadiawicket
Added topic Attemtping the fastest MT4 backtest possible for 500USD what are your recommendations?
Attemtping the fastest  tick by tick MT4/MT5  backtest   possible; what are your recommendations? Thought about building a gaming PC without the graphics card; is this approach OK? 
nadiawicket
Added topic MT4 Backtest Upgrade Suggestion
Skip by candle instead of only DATE for MT4 Backtesting so we can accurately (tick by tick) test every timeframe. Current implementation only works accurately for higher timeframes. When you are deep in B acktesting  1m strategies; NEED TO DO A
nadiawicket
Added topic Perfect PC backtesting rig?
Attemtping the fastest tick by tick  MT4/MT5  backtest   possible; what are your recommendations? Thought about building a gaming PC without the graphics card; is this approach OK? 
nadiawicket
Added topic Why does For Loop mess up Object Create?
MetaTrader4 v4.00 Build 1260 Tested on MetaQuotes Data from 2020.06.15 to 2020.06.16 on EURUSD M1 Using a For Loop Operator and ObjectCreate(), we create a VLine the first time a candle has had a higher low and a higher high than iBar1 (last finished
nadiawicket
Added topic Volume skippage?
//+------------------------------------------------------------------+
nadiawicket
Added topic Simple EA Optimization: Declaring 2 times the main culprit about these EA's speed?
These 2 EA's execution speeds are very different, I take it due to the fact that in first one there is the declaration at top and in the second one there is only the declaration inside the OnTick() function . Is this all there's to it
nadiawicket
Added topic ALT key glitch on Linux
On Debian XFCE Buster Wine MT4 on both the Terminal and the MetaEditor we need to press ALT every once in a while bc the key gets "stuck" in a weird glitch. Anyone got a fix? Would be so great if they did a native AppImage https://appimage.org/
nadiawicket
Added topic Is <11 faster than <=10?
<11 faster than <=10? for example if (b> 0 && b< 11 ) vs  if (b> 0 && b<= 10 ) Is the first one faster bc its just one thing < vs <=? Worth it
nadiawicket
Added topic Why doesn't this EA only print changing Bids?
//+------------------------------------------------------------------+
nadiawicket
Added topic [SOLVED] Why do these 2 expressions get registered differently?
if ( 6 && 7   > 5 ) // WORKS Print ( "NO PARENTHESIS Yes" ); if ( ( 6 && 7 )  > 5 ) // DOESNT WORK Print ( "PARENTHESIS Yes" ); Why does first case work and second case doesn't
nadiawicket
Added topic Whats largest size array we can effectively use in mql4?
Need to compare every single bid of last month for some calculations (about 2 million values just for EURUSD alone). Putting them all in an array (need to do so for 31 instruments) seems too clunky. Any better way? I have been just writing bids to a
nadiawicket
Added topic if everyone buys in forex, price action goes up?
if everyone buys in forex, price action goes up
nadiawicket
Added topic What is the best for Live: WIndows MT5 or Linux MT4? Isnt Windows too vulnerable?
Is it? Anyone tried both and care to tell me is the Linux hassle worth it for stability or anything else