nadiawicket / Profile
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
nadiawicket
Added topic Dedicated Windows 10 using MT5 = Invulnerable to hacking?
How hard is it to break into someone's MT5 / do any sort of malicious activity from a third party onto someone using a dedicated win 10 with just mt5 installed in it? Its just me and the broker, no one else can hack into my MT5 password or in any way
nadiawicket
Added topic How much time does it take you to go from mql4 to mql5?
Been on mql4 for like 2 years, had no prior coding experience. Just finished my first EA in mql4 but the tester I've heard was faster in mql5 because of the threading or something. How long will it take me to transition my EA into mql5 dedicating
nadiawicket
Added topic You think too much OrderModify (every tick) could tempt unscrupulous brokers to mess with you?
I have an EA that in order to be as effective as possible is changing the Sell Stops , Profit levels, and everything that the spread sort of "messes with"; anything that is not exact because of the spread I have taken the time to make everyhing
nadiawicket
Added topic Is it possible to use "function arrays"?
Is it possible to use function arrays in mql4? As in an array that holds a function in every index so that the following 2 functions can be placed inside an array: int SellStopsTotalTF0() { int SellStopsTotalTF0= 0 ;
nadiawicket
Added topic How to remove zeros from array?
for ( int x= 1 ;x< 50 ;x++) // GET CLOSES THAT ARE LOWER THAN PREVIOUS CANDLE'S CLOSE if ( iClose ( _Symbol , 0 ,x)< iClose ( _Symbol , 0 ,x+ 1 ))
nadiawicket
Added topic Call variable with string concatenate or similar just impossible?
Need advice in order to be able to solve an issue that is preventing me from using 10 times smaller code because I can't call a variable with String Concatenate. If you think my ideas are not the best please let me know what you would do instead, you
Share on social networks · 1
9
nadiawicket
Added topic Anything like this working in 2018? (get 1970s 1m data from broker server)
Phillip : Just FYI as someone who use to do what you describe here I know the pain you are experiencing trying to download historical data. There is a better/easier way to get the data from the server from your broker and that is: Step 1: Open an M1
Share on social networks · 1
1
nadiawicket
Added topic Why did Williams displace the Alligator?
I can't find it online
Share on social networks · 1
5
nadiawicket
Added topic Any advantage to coding every _Symbol/_Period on one EA?
Or is a separate EA for every _Symbol or maybe _Period better or more precise for some reason? Logic suggests using one EA is more efficient than attaching the same EA on 20 different charts because the simple act of loading many different
Share on social networks · 1
12
nadiawicket
Added topic Backtester historical tick data for Monthly timeframe from my broker if broker started like 2 years ago?
Its from their liquidity provider from back then? MT4 backtester proceeds to "model tick data" since before there were ticks on the broker? I just want to gather raw tick data from my broker from as far back in time as possible. 1m frame only goes
Share on social networks · 1
3
nadiawicket
Added topic Does backtesting work on Linux?
Just tested the exact same EA on VM Win10 and on Debian, 2 completely different results. Backtesting is not working on Linux then, Can anyone confirm this
Share on social networks · 1
8
: