Opara
Opara
Friends

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

Opara
Added topic problem with random stop loss values
I have this code before. The StopLoss is set at 30 points at the moment, but when a trade is placed, the stop loss on the trade is anything between 60 and 70 points. Seems very random and I cant work out what is causing this. Can anyone help me with
Opara
Added topic MT4 crash
When I apply an EA to my chart, MT4 crashes with this error, can any one tell me how to fix it ? There has been a critical error Time : 2011.04.26 20:11 Program : Client Terminal Version : 4.00 (build: 229, 16 Nov 2010) OS : Windows XP Professional
Opara
Added topic Using #property indicator_chart_window
can I use #property indicator_chart_window in an EA, and if not why not and what do I have to do in its place / do to make it work ? I have copied it from a Pivots_daily indicator where it already draws to the main window so why will it not work when
Opara
Added topic What does # Define mean ?
I have this in code: #define SIGNAL_NONE 0 #define SIGNAL_BUY 1 #define SIGNAL_SELL 2 Could anyone tell me in laymans terms what this code does please ? thanks in advance
Opara
Registered at MQL5.community
Opara
Added topic help with code counting types of order please ?
I am trying to get this code to count the different types of order and store the results where I can use them, but it doesnt work. Could anyone help ? double     Op_Buy,  Op_Sell, Op_BuyStop, Op_SellStop,  
Opara
Added topic MT4 Bug ?
I have just been watching MT4 trade and my trailing stop stopped working on Sell orders . I restarted the machine and it works. Is this a bug and can I fix it ? Can I get MT4 for linux ? (Ubuntu)
Opara
Added topic What is the best way to test my EA ?
What is the best way to test my EA without waiting the whole day for another trade to happen just to check my latest adaption is working or not ? ? I can not use the back tester on MT4
Opara
Added topic Opinion - very successfull EA - $3000 account to $6300 in two weeks (could have been $9000)
Hi I am looking for the opinion of some of the experienced people on here. I have programmed a simple EA, and it seems to work fantastic on a demo account. I know trading live is different, but what I want to know is in what way is it different and
Opara
Added topic How can I count the orders already on the account at start ?
Im a newbie and Im really stuck, I had tried many ways and combined with my programming inexperience, I just cant find a solution to this problem. I want the EA to count how many open and pending orders of each type are on the account, and store the
Opara
Added topic Newby question about Strategy tester results
In the results graph, there are two lines, the blue profit line and the green equity line. many of the tests I do end with the equity line heading to zero near the end, my question is, why is this ? Is it a flaw in the strategy tester
Opara
Added topic Does having two EA's working the same acount cause problems ?
I have one EA placing trades and another closing the trade. They just dont seem to work properly. is there any way around this, that I can have them work properly
Opara
Added topic Can I send an order for a Stop order, as soon as I close a previous order at the stop loss value within the same function ?
This has to be a repost as I've not solved it yet I have tried this code, but I don't know what to do to get it to work void killTrade(int pips, int ticket) { double price = NormalizeDouble(OrderOpenPrice(),Digits); bool reopen = 0;
Opara
Added topic Can I send an order for a Stop order, as soon as I close a previous order at the stop loss value ?
I have tried this code, but I dont know what to do to get it to work void killTrade(int pips, int ticket) { double price = NormalizeDouble(OrderOpenPrice(),Digits); bool reopen = 0; if(OrderSelect(ticket, SELECT_BY_TICKET)==true) { if(pips <=
Opara
Added topic About double Volume []
double Volume[] Series array that contains tick volumes of each bar of the current chart. does this hold the data about high, low, open and close
Opara
Added topic What is tick Volume ?
Is it the amount to ticks that take place within any given bar
Opara
Added topic Where can I get the best test data from ?
I have heard differences of opinion on this
Opara
Added topic Can I call a function from inside another function ?
Can I call a function from inside another function ? Can I pass a function call as a variable
Opara
Added topic Function for getting the value of pips does not work
Hi This function I have from another EA, and I am trying to insert it into my own EA, but when I do I get lots of errors, including "function definition unexpected". This is the function double getPipValue(double ord,int dir) { double val;
12