- Search Metals Mine
-
AimHigher replied Feb 12, 2014I thought Protrader seemed like a great alternative with native support for both mql4 and c#. However after reading the post below I got a lot less optimistic about brokers adopting it. Without a pricing model that makes sense for brokers with ...
MT4 New build 600 is released
-
AimHigher replied Feb 6, 2014Arav, Sent you a PM. In case someone else cares, here is a post I wrote in another forum a while ago. DebugView download link for the version I use:https://anonfiles.com/file/a3e558f05...2773c2555c7f1b One thing to add, the key (according to me) in ...
How to use DebugView for identifying code mistakes?
-
AimHigher replied Jan 29, 2014EuroMaster, Since you posted in two threads I will ask the question in both places. When you contacted customer support, what did they give as a reason for the delay?
IC Markets
-
AimHigher replied Jan 29, 2014EuroMaster, When you contacted customer support, what did they give as a reason for the delay?
IC Markets
-
AimHigher replied Jan 25, 2014IC Markets I believe. At least mine hasn't expired since May 2013.
Which brokers offer unlimited demo account for metatrader?
-
AimHigher replied Jan 25, 2014To access the indicators you have the .ex4 files in an EA, use the iCustom function. If you haven't used iCustom, do a search and you will find lots of info. You also need to know which buffer the values you are interested reside in. To see what the ...
How can I convert .ex4 file into .mq4?
-
AimHigher replied Jan 21, 2014Sorry, my bad. Missed a bracket. Try this, it worked for me when I tested it. if(OrderType() == OP_BUY && (OrderOpenPrice() < LowestBuy || (OrderType() == OP_BUY && LowestBuy == 0))) and same for sell orders if (OrderType() == OP_SELL && ...
Function not finding lowest BuyPosition - why?
-
AimHigher replied Jan 21, 2014Sorry, I don't quite understand. What is and what isn't working? What does each variable return and what do you want them to return?
Function not finding lowest BuyPosition - why?
-
AimHigher replied Jan 21, 2014Change this if(OrderType() == OP_BUY && OrderOpenPrice() < LowestBuy || OrderType() == OP_BUY && LowestBuy == 0) to if(OrderType() == OP_BUY && (OrderOpenPrice() < LowestBuy || OrderType() == OP_BUY && LowestBuy == 0)) and vice versa for sell orders.
Function not finding lowest BuyPosition - why?
-
AimHigher replied Jan 16, 2014As I said before, I don't think the commission structure for cTrader makes any sense but this is not IC Market specific, it is indeed more or less a broker standard. That does not in any way make it ok with me so I will continue looking for ...
IC Markets
-
AimHigher replied Jan 15, 2014Check if this works for you. Seems to work for me but since I don't use the indicator I don't know exactly what you want it to display. Edit: Didn't see the new version posted by fxdaytrader before I added mine. I would use that one instead since my ...
I will code your EAs and Indicators for no charge
-
AimHigher replied Jan 14, 2014Glad you find it useful. Based on your comment "I'd rather not have it going after every change of time frame" I thought you were changing the time frame parameter (by default set to 240) to get new values. Otherwise I didn't see a need to change ...
Export to Excel
-
AimHigher replied Jan 14, 2014As far as the statistical precision, it appears DoubleToStr vs NormalizeDouble has the same precision up to 8 decimals when I compare them. However, I don't know that from any other source than my own testing so please check for yourself. Since the ...
Export to Excel
-
AimHigher replied Jan 13, 2014The file I have attached works for me. I essentially tell it to wait a certain number of ticks (default set to 5) after init/restart before running the full export. I don't know why it works since I tried a lot of other ways to no avail. I think ...
Export to Excel
-
AimHigher replied Jan 12, 2014WideEyed, Thanks for your comments. I'll keep an open mind about NinjaTrader. I like InteractiveBrokers in general but I have used them almost exclusively for equities. Also, I need zero hand holding or flashy visuals, just fast, reliable and cheap ...
NinjaTrader screwed up with Zen-Fire data feed
-
AimHigher replied Jan 10, 2014WideEyed, I very much appreciate your post below. I am in the process of looking for alternatives to MT4 and NinjaTrader was pretty high on my list. You however confirmed me fears of a transition that is considerably more complicated that it appears ...
NinjaTrader screwed up with Zen-Fire data feed
-
AimHigher replied Jan 10, 2014Not sure how IC Markets will respond but what if you opened a new account through HFT Group and then transfer funds from the original account to the new? Personally I don't think that kind of process should be necessary but I have had to do it in ...
IC Markets
-
AimHigher replied Jan 8, 2014Thanks Layzars, That is why this commission structure makes no sense since it pretty arbitrarily gives you different commission per unit of real exposure that is not tied to any higher or lower cost that the broker would have (at least not to that ...
IC Markets
-
AimHigher replied Jan 8, 2014Does it also work the other way around so if i buy 100,000 USDSEK @ 6.30 my commission would be 15,873/100,000 x $6.00 = 0.95? That would be a huge difference vs the $7 (pre-rebate) that one gets socked with using MT4.
IC Markets
-
AimHigher replied Jan 3, 2014With PSAR I am pretty sure you need to test the signals live since the dots will move around while the bar is still open. So what looks like a good signal on the chart when you go back an look at it might not have been when the signal actually ...
PSAR/BB System for Binary Trading Needs EA