Orders Execution
0
Views
0
Downloads
0
Favorites
OrderBuy
//+------------------------------------------------------------------+
//| OrderBuy Scripts by ***NicoMax*** |
//| |
//| Set a New Order Buy with Predefined Lots,SL,TP |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| script program start function |
//+------------------------------------------------------------------+
int start()
{
int ticket,iSlipPage,iSLPips,iTPPips;
double dStopLoss, dTakeProfit,dLots;
string sText,sArrow;
iSLPips=100; //Stop Loss in Pips
iTPPips=150; //Take Profit in Pips
dLots=0.5; //Amount of Lots
iSlipPage=3;
sText="My Order"; //Order Text
sArrow=CLR_NONE; //Order Arrow Color
dStopLoss=Bid-NormalizeDouble(iSLPips*Point,MarketInfo(Symbol(),MODE_DIGITS));
dTakeProfit=Ask + NormalizeDouble(iTPPips*Point,MarketInfo(Symbol(),MODE_DIGITS));
ticket=OrderSend(Symbol(),OP_BUY,dLots, Ask,iSlipPage,dStopLoss, dTakeProfit,sText,000,0,sArrow);
if(ticket<0)
{
Print("OrderSend failed with error #",GetLastError());
}
return(0);
}
//+------------------------------------------------------------------+
Comments
Markdown Formatting Guide
# H1
## H2
### H3
**bold text**
*italicized text*
[title](https://www.example.com)

`code`
```
code block
```
> blockquote
- Item 1
- Item 2
1. First item
2. Second item
---