hi funyoo,
Any new for this issue ?
Regards.
S.T
hi funyoo,
Any new for this issue ?
Regards.
S.T
Do you have a version of the [Volatility Quality EA v301] that allows for trade execution when the signal appears? The current version I have executes trades at the close of the bar, which causes many losing trades. Please post this new version here, or sent to me at nascoagent@gmail.com.
Much appreciated, great EA!
Thanks
GWN
Funyoo -
I'm looking for a version of the (Volatility Quality EA v301) that allows for trade execution 'at the signal' and not 'at the bar close'. Can you provide this, or let me know where to get a version that does this?
Thanks - nasco
Hi Funyoo ,
It was great idea to blocked multiple orders..
But , if we have only one condition to buy or sell , such as a crossing to zero level an indicator, expert has to exit buy (opened in past ) position and at the same while opening new sell order... in the same bar...
how can I get define closed orders is not multiple orders ...
Thanks ...
another solution:
//+------------------------------------------------------------------+
//| Only the 1st order is executed once per bar, doesnt affect 2nd,..|
//+------------------------------------------------------------------+
if(Only1OrderPerBar==true){
if(CountHistoryOrders()>0){
return(0);
}
}
//+------------------------------------------------------------------+
//| Only1OrderPerBar Calculation |
//+------------------------------------------------------------------+
int CountHistoryOrders(){
int i,count=0;
if(OrdersHistoryTotal()>0){
for(i=OrdersHistoryTotal()-1;i>=0;i--){
OrderSelect(i,SELECT_BY_POS,MODE_HISTORY);
if(OrderSymbol()!=Symbol() || OrderMagicNumber()!=Magic)continue;
if(OrderOpenTime()<iTime(NULL,0,0))break;
if(OrderType()==OP_BUY || OrderType()==OP_BUYLIMIT || OrderType()==OP_BUYSTOP)if(OrderOpenTime()>=iTime( NULL,0,0))count++;
if(OrderType()==OP_SELL || OrderType()==OP_SELLLIMIT || OrderType()==OP_SELLSTOP)if(OrderOpenTime()>=iTime (NULL,0,0))count++;
}
}
return(count);
}
IXBONE
Professional Forex VPS
Business Internet Services
Registered Internet Service Provider (Ripe: AS 16195)
im afraid it doesnt work ixbone