With an ECN type broker you cannot set the SL and TP when you place a Market order . . you have to do it after the order is placed using OrderModify().
Try this also . . . http://crum.be/ecn
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
These 2 don't work
OrderSend(Symbol(),OP_BUY,NormalizeDouble(lotstobuy,2),Ask,3,NormalizeDouble(slpoint,4),0);
OrderSend(Symbol(),OP_BUY,lotstobuy,Ask,3,slpoint,0);
this works
OrderSend(Symbol(),OP_BUY,1,Ask,3,0,0);
Could any one tell me whats going on? I would like to put my lotstobuy and slpoint in the the ordersend
thanks very much for helping