Price Data Components
Orders Execution
0
Views
0
Downloads
0
Favorites
Decorator_Ron_v01
/*-----------------------------+
| |
| Shared by www.Aptrafx.com |
| |
+------------------------------*/
//+--------------------------------+
//| |
//+--------------------------------+
#property copyright "Ron Thompson"
#property link "http://www.lightpatch.com/forex/"
//+-------------------------------------------+
//| |
//+-------------------------------------------+
int start()
{
int cnt;
for(cnt=OrdersTotal();cnt>=0;cnt--)
{
OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);
if( OrderSymbol()==Symbol())
{
if(OrderType()==OP_BUY)
{
ObjectDelete("Objt"+DoubleToStr(cnt,0) );
ObjectCreate("Objt"+DoubleToStr(cnt,0), OBJ_TEXT, 0, Time[OrderOpenTime()], OrderOpenPrice()+(10*Point()) );
ObjectSetText("Objt"+DoubleToStr(cnt,0),"B",10,"Arial",White);
}
if(OrderType()==OP_SELL)
{
ObjectCreate("Objt"+DoubleToStr(cnt,0), OBJ_TEXT, 0, Time[OrderOpenTime()], OrderOpenPrice()+(10*Point()) );
ObjectSetText("Objt"+DoubleToStr(cnt,0),"S",10,"Arial",White);
}
}//if
}//for
}//start
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
---