[ARCHIVE] Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 3. - page 205
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Don't kick me, I've read all the combinations of the word Array and tried dozens of indicators, but I haven't figured out how to shake the array.
To have another buffer with sign of ignoring extremum.
Hello.
Could you please tell me if it is possible to save the Magick number when partially closing an order (transfer it from the parent order to the child order)?
Thank you in advance.
that the market axioms that are as common as possible at this stage and take away the statistical edge from the subset and are artificially cultivated by the founders.
Here's the situation, help me out.
double stos(){
int kff=OrdersTotal();
for(int aaf=0;aaf<=kff;aaf++)
{ if(OrderSelect(aaf,SELECT_BY_POS,MODE_TRADES))
{ if(OrderType()==OP_SELL)
{ if(OrderMagicNumber()==100)
{
double ru=OrderStopLoss();
}
}
}
}
return(ru);
}
I'm getting stop loss information with this. i've checked with Alert and it works.
then
int mod_ss(int m){
int tot=OrdersTotal();
if(tot>0)
{ if(OO_11(m)==true)
{ int k=OrdersTotal();
for(int aa=0;aa<=k;aa++)
{ if(OrderSelect(aa,SELECT_BY_POS,MODE_TRADES))
{ if(OrderType()==OP_SELL)
{ if(OrderMagicNumber()==m)
{
int tik25=OrderTicket();
OrderModify(tik25,Ask,stos(),0,0,0);
}
}
}
}
}
}return(0);
}
modification doesn't work, what's wrong?
Replace with
OrderModify(tik25,Ask,stos(),0,0,0);
to
OrderModify(tik25,OrderOpenPrice(),stos(),0,0,0);
this is nonsense, what does the opening price have to do with it if OrderModify(tik25,Ask,Ask-0.01000,0,0,0);-it works
but this way OrderModify(tik25,Ask,stos(),0,0,0);-it doesn't work