nadiawicket
nadiawicket
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
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
nadiawicket
Added topic Why did Williams displace the Alligator?
I can't find it online
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
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
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
nadiawicket
Added topic Any way to be able to use Indicators on Linux?
Seems half the indicators don't work on Linux. Anyone found a non-Windows fix? https://www.mql5.com/en/market/product/16560#description Got that working
nadiawicket
Added topic Is this the absolute only MQL Forum in the Internet?
No nice IRC either? I just can't believe. Can't post on Forex Factory because of some priviledge hurdle, I asked support even and still can't find out even how to get that sorted out. So I'm stuck with jus these forums is a little limiting, I have
nadiawicket
Added topic How to give an indicator my own data?
For example if I want to give the EMA a custom value instead of iCLose or the default values so I can see into the future, how can I do this? Do I have to reverse engineer MetaQuotes source or code a brand new complicated array indicator just for
nadiawicket
Added topic Please help me with EMA calculation
Hello! I need a quick help with EMA calculation. I seem to be very close, however its incorrect around the 5th decimal place in EURUSD 1M. Any ideas? What's with this? Looks like something with the normalizing? Heres the EA that calculates the EA
nadiawicket
Added topic Need exact android macd on pc
I need thd exact same macd as in android mt4. Where can I download it, whats it called in the codebase? I need the exact same paint on pc as in android
nadiawicket
Added topic Chart horizontal grid line values?
I looked all over the MQL4 manual and still can't find the right way to just grab these 2 chart values, as shown in the attached image . The values are highlighted in a red circle in the image. As you can see, we need the value of the bottom and top
nadiawicket
Added topic FileReadArray() HELP!!!!
Hello! Hope you can help me out. I have a file named "sample.bin" in the MQL4/Files directory that has the exact following content: 1 0 1 1 0 1 I want to create an array that has all of those 6 lines as array values. The desired output is
nadiawicket
Added topic How do you call a function from within a second function? Online help is not cutting it
Hello, Im just almost done coding my EA and am really happy about it, however I am unable to select a function within inside of a second function in this EA, and this is preventing me from finishing my EA. Heres the EA. I just need to select the