- Search Crypto Craft
-
sangmane replied Jan 29, 2011lol, i remembered the days i learned mql and stuck on this code example. correct this part: for(int i=1; i>=OrdersTotal(); i++) to for(int i=1; i<=OrdersTotal(); i++) also this part if (Total<1) // No more than one order to if (Total>1) // No more ...
Order accounting code help
-
sangmane replied Jan 28, 2011thanks for the compliment
i'm stuck on getting a second modal window that contained list of orders to be displayed properly. i need it as a shortcut for giving simple order mngmnt like (partial) closing and move to break even. the more ...Alternative MT4 order window?
-
sangmane replied Jan 28, 2011it's not difficult to add button for closing trade. the problem is if that button trade is clicked and there are more than one open order, which order should be closed? currently i'm coding to add list view to display open orders so that i can ...
Alternative MT4 order window?
-
sangmane replied Jan 28, 2011i only modified your iregr indicator so that it can run as ea. the ea code does nothing except drawing/moving arrow object according to iregr value. the current iregr value is in fx variable. to test it, run iregr EA in strategy tester and attach ...
Integrating polynomial regression indicator into EA
-
sangmane replied Jan 28, 2011see what i get on strategy tester. red dotted line drawn by iregr indicator (repainting). gold line drawn by ea (using arrow object), fixed after bar close (not repaint). the gold line show the path taken by iregr indicator since the first time ea / ...
Integrating polynomial regression indicator into EA
-
sangmane replied Jan 27, 2011i don't understand what you mean by "DDE is raw data". What is raw data and what is not raw data? DDE is not about the data itself. Dynamic Data Exchange is a protocol that regulate how to exchange data. You can send string, integer, double, even ...
question re DDE to Excel data transfer
-
sangmane replied Jan 27, 2011dde client and server have to use the same predefined data format in order to exchange information. when server send data 0100 0001 (binary), without knowing the format of that data, client can display this data as "65" or "A". afaik, other than ...
question re DDE to Excel data transfer
-
sangmane replied Jan 25, 2011you got that confirmation message because your "confirm dll" settings is checked. but even with this setting, the scripts should open a buy/sell order as long as you answer "yes". please see errror messages on journal/experts tab.
Alternative MT4 order window?
-
sangmane replied Jan 25, 2011hi shabs, here is the even smaller order window. unlike the previous one i posted before, this one using its own window. this window is actually just a window program that provide a graphical user interface to run a script. the order itself is sent ...
Alternative MT4 order window?
-
sangmane replied Jan 22, 2011ahh. it is clear now. i was thinking you were defending that inventor of risk calculator
"you can't ignore" = "you have to obey"Visual Position Size Calculator
-
sangmane replied Jan 22, 2011it's not about ignoring the law, if that's what you meant. if a lawyer told me that one of his client hold int'l intellectual property rights to "instant risk size lot calculators", yes, i will just ignore him. i'll do the same when someone claim to ...
Visual Position Size Calculator
-
sangmane replied Jan 21, 2011hi DL, run a script named "period_converter" to M1 chart. this is standard script that comes with MT4 installation. on input box, use Multiplier = 2. hth
Cannot Open a 2 Minute Offline Chart
-
sangmane replied Jan 21, 2011seeing its formula, it is a linear regression, isn't it?
Programmers Interested in a Small Project Please Take a Look - Time Series Forecast
-
sangmane replied Jan 21, 2011That's a joke. If I'm at your position, I will just ignore him
Visual Position Size Calculator
-
sangmane replied Jan 11, 2011What about Microsoft .NET Framework Redistributable Package ? Link for version 2.0: url
Alternative MT4 order window?
-
sangmane replied Jan 10, 2011jagui, maybe users need to install Microsoft Visual C++ 2008 Redistributable Package ?
Alternative MT4 order window?