ok. make sense.
thanks
I'm trying to find out how to modify pending order price?
the only thing I found is only trailing pending order, but it doesn't work as expected.
any advise?
it solved now. just right click anywhere & choose "Cancel". 
when I working with my EA then I click menu link Profile > Profile Setting (open new tab) and I update my profile on that page. then I back to my EA builder, and click menu Options > Project Option > Project Option and somehow it triggers infinite loading without any popup appeared.
and i re-enter the url in address bar https://fxdreema.com/builder to refresh the page. but suddenly I lost my working space there. I try to load project but there's only 1 project with name "unnamed".
how can I get my EA back? I put a lot of logic there 
I just purchased your software. the UI is incredible. but I have problem with the EA after EA compiled.
almost all the EA i try to build with your software, can't run in backtest because of critical problem. even your sample EA doesn't work in my MT4, they're all stopped with "expert advisor self terminated" 
ex:
error in mt4 backtest:
2017.11.07 08:20:21.395 2017.09.07 23:45:44 rAlgo_rebecca_EA EURUSD,H1: Expert Advisor self terminated
size = ArraySize(orders1);
int dbremove = false;
for (i=0; i<size; i++)
{
if (OrderSelect(orders1[i], SELECT_BY_TICKET, MODE_TRADES) == false || OrderType() <= OP_SELL)
{
if (OrderSelect(orders2[i], SELECT_BY_TICKET, MODE_TRADES)) {
if (DeleteOrder(orders2[i],clrWhite))
{
dbremove = true;
}
}
else {
dbremove = true;
}
if (dbremove == true)
{
ArrayStripKey(orders1, i);
ArrayStripKey(orders2, i);
}
}
}
the out of range error is at this part:
if (OrderSelect(orders1[i], SELECT_BY_TICKET, MODE_TRADES) == false || OrderType() <= OP_SELL)
can you give me 1 working example that really works in real life? I plan to create complex EA but seems it doesn't work even for simple things. cmiiw
thanks