nadiawicket
nadiawicket
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
nadiawicket
Added topic How to select last profit order for chart?
This is the last step to getting my system going. Really need this solved.    for ( int i= OrdersHistoryTotal ();i>= 0 ;i--)      {        if ( OrderSelect (i, SELECT_BY_POS
nadiawicket
Added topic Experts tab has a 60ish second offset?
Or is it just Wine? Seems to me the time in the Experts Tab is ahead by about 60 seconds compared to the Account History. This makes fixing EA errors harder than it should be.. Any fixes for this? So far just ignoring the time warp
nadiawicket
Added topic Function return value inside a string possible?
Is there a way to, for example, have the compiler put the chart's _Symbol right inside a string? FileDelete ( "Sell _Symbol " , FILE_COMMON ); If not, Ill have 30 EA's instead of just 1 because of having to write every single currency pair in there
nadiawicket
Added topic FileOpen and edit other directories?
Can I FileOpen and write other things in my computer or is it just the default /mql/files and the Common Folders that I can open and write to with an EA FileOpen