- Search Crypto Craft
-
rockit replied May 19, 2015Ok, you may consider the use of EventChartCustom function to notify all EAs and transmit parameters. In your case this would mean that the EA that wants to act would notify the master EA, and the master EA would notify all other EAs to act ...
Named Pipes for MT4
-
rockit replied May 19, 2015Are you possibly over-complicating things here? With a master/slave configuration the master can perform buy/sell operations itself and the slave(s) function solely as signals. So, there is the chart event feature now, so that any indicator/ea can ...
Named Pipes for MT4
-
rockit replied Apr 23, 2015No difference whatsoever. And no, they (both) do not provide MT4; however, MT4 access to SWFX (Duka's " Swiss Forex Marketplace") can be provided by a 3rd party, additional fees may apply.
Dukascopy Europe vs Dukascopy Bank SA
-
rockit replied Mar 17, 2015Because you are using X for the shift value, which is a constant; so, you are summing up X times the same value then dividing by X again. You have to use "i" for the shift value instead.
I will code your EAs and Indicators for no charge
-
rockit replied Mar 17, 2015I see. Here's a code sample, I hope it works: { int tickets[100]; double openprices[100]; int k = 0; // collect for(int i = 0; i < OrdersTotal(); i++) { if(OrderSelect(i, SELECT_BY_TICKET)) { if(OrderType() == OP_BUY) { tickets[k] = OrderTicket(); ...
Help with coding this problem - sort buy orders
-
rockit replied Mar 17, 2015There are several methods. I will describe a simple (non OOP) method: 1. cycle through the order queue and put the ticket numbers (of open buy orders) into one array and the corresponding open prices into another; 2. do a bubble sort (look it up on ...
Help with coding this problem - sort buy orders
-
rockit replied Mar 12, 2015XStation is a web based platform and you cannot use custom indicators anyway. OTOH the api is for direct connect to the server and is not in any way related to the web based platform.
I will code your EAs and Indicators for no charge
-
rockit replied Mar 11, 2015This will compile without errors, just warnings but you can ignore. However, as I said, no guarantee that it will work properly; and the code is too big to analyse and make sure it will work. So, try your luck.. file
Can anyone help with this code?
-
rockit replied Mar 11, 2015Well, you asked how you can re-write it then, right? You cannot if you have no coding skills as the case may not be trivial and cannot be gauged from a piece of code only. Also there may be novice coders who get stuck with their code and ask for ...
Can anyone help with this code?
-
rockit replied Mar 11, 2015I assume that you are not the author of the code and you have no coding skills, then it is pointless to try to explain it to you (that is I have already explained..). Possibly it is old-style code that does not compile in the new builds of MT4. You ...
Can anyone help with this code?
-
rockit replied Mar 11, 2015What part of "undeclared identifier" do you not understand? The identifiers in question have to be declared in the proper scope, so that they are "visible" to the compiler at the particular place in the code.
Can anyone help with this code?
-
rockit replied Mar 11, 2015You have to formulate a more generic rule. For example: In order to determine what size I want to trade today, I want to look at past x day's performance. For every past day that ended in a loss I want to double the lot size .
I will code your EAs and Indicators for no charge
-
rockit replied Mar 10, 2015Without knowing your platform specifics, noone can make an indicator for it.
I will code your EAs and Indicators for no charge
-
rockit replied Mar 10, 2015Your request is confusing. As I understand it, you want: 1. calculate P/L for each day of past x days; 2. and if any of those P/L is positive, lot multiplier is 1 and the calculation is done (aborted); or else it is lot^x (lot to the power of x) or ...
I will code your EAs and Indicators for no charge
-
rockit replied Feb 3, 20151. you would want to count the trades 2. you would need to remember the trend of the last trade 3. then if trend and the trend of the last trade are same and also trade count is not above limit, only then you can do another trade in that direction; ...
Need help with coding
-
rockit replied Jan 22, 2015My coding skills are sufficient to do what I need for myself. And I learn things as I need them. Below I have attached a current screenshot of my trading shell (showing mtf eurusd). This is what I use for live trading. I do use OOP but I also use ...
MT4/5 and C++ or Java interface
-
rockit replied Jan 21, 2015Been there, done that. Am using my own GUI for live trading and am totaly independent of MT - MT only serves me as a means to 'talk' to the broker and get market data. The c++ code I think is as 'close to the metal' as possible, so I can share some ...
MT4/5 and C++ or Java interface
-
rockit replied Jan 15, 2015Tickmill also known as (or formerly known as) Armada Markets (at least for retail). So, if you were so far satisfied with Armada Markets, likely everything will stay the same. However, time will tell.
Tickmill... anyone have experience with them ?
-
rockit replied Jan 1, 2015In addition, when a pending order is activated its type (returned by OrderType()) changes from >1 (above 1) to <2 (below two, or with other words 0 or 1).
Not requesting to develop EA; Just Help with Coding few lines?
-
rockit replied Dec 9, 2014Commission included: file
EA - close trade of currency pair when “X” profit is reached