mike_s
mike_s
Friends

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

mike_s
Added topic Is it possible to raise event every x milliseconds?
Hi guys! Is it possible to automatically  raise event every x milliseconds? I want my EA to run every x milliseconds and not every tick , therefore i thought maybe i can raise event every x milliseconds
mike_s
Added topic Any brokers offering MT5 already?
Hi, I tried to google for brokers offering MT5 platform for live account. But i can't find any. Are you familiar with such broker? 
mike_s
Added topic Multi currency Indicator - Help
Hi, Is it possible to code multi currency indicator? I tried iClose but it returns 0 for all currencies except the one the indicator attached to. Whats the proper way to do it? Thanks
mike_s
Added topic Anyway of backtesting multi currency EA?
Hi guys, I know that multi currency EA cannot be tested on the default strategy tester . Maybe anyone heard of some workaround ? Thanks Mike
mike_s
Added topic AI EA - Next level of EA's?
Hi all, Recently i can see a lot of buzz around the Artificial intelligence EA's . About how they can learn the pair characteristics, and get better all the time. Anyone can point me to a more detailed resource about that niche? Some articles? Maybe
mike_s
Added topic Looking for a Micro Lot broker (0.001 starting lot)
Hi all, Anyone here familiar with a broker that allows 0.001 starting lots so i can make my testing on such system? I've Googled for such brokers, and found some that claim to support mt4 and 0.001 lots, but when i install Mt4 it actually 0.01
mike_s
Added topic Is there a meta trader app for android?
Hi all, Does anyone is familiar with a meta trader app for android? I'm using a Google Nexus One, it runs Android v2.1. It seems like metatraderandroid.com is not working anymore
mike_s
Added topic Does manual orders have magic number?
Hi guys, I use the following loop in order to cycle my orders and close all orders in the same symbol and magic number. for (cnt= 0 ;cnt< OrdersTotal ();cnt++)   {      if ( OrderSelect (cnt, SELECT_BY_POS
mike_s
Added topic Any suggestion for a good 5M indicator?
Hi guys, I'm looking for an indicator that give somewhat good trade signals on 5M period. Can you suggest some? Any advice will be much appreciated. Thanks, Mike
mike_s
Added topic Adding new server to MT5
Hi all, Is there anyway to add another server to MT5? I wondered if i can add my real broker server, this way i can download historical data from his servers and make the testing on it. Please note: My broker works with MT4. Are there any server side
mike_s
Registered at MQL5.community
mike_s
Added topic Where can i find history data?
Hi, Is there any reliable source to download history data? I'm looking for a source that have data for years back, all timeframes, and at least most of the major pairs. Appreciate your help, Mike
mike_s
Added topic Any suggestions on making good QA for an EA?
If you can give some advice or list your way of QA for EA and for backtesting it will be great. Thanks in advance
mike_s
Added topic need help with simple if statment
I've searched the forum and book and couldn't find the answer. I'm trying to write a code that will do the following: if (ticket1 || ticket2 || ticket3 || ticket4) closed {    ticket5=ordersend(...) ... } how do i write it correct? which
mike_s
Added topic How to open one order at a time?
How do i make the program to open only one trade, and if a trade is open, not to open another one