| / | Forum |
|
Financialabs
2008.11.14 13:15
Hi, I would like to draw an arrow/marker on a specific position - height - of a chart, different for different "shift" positions. Which functions can be used? Drawing functions are not so simple to understand.... Thanks in advance Alex |
|
Trader's Kit: Decorating Indicators In this article you will find main tasks when decorating indicators, their solution and automation. |
|
Roger
2008.11.14 21:54
Try there |
|
Blooper1980
2008.11.16 06:00
Financialabs wrote >>
Hi, I would like to draw an arrow/marker on a specific position - height - of a chart, different for different "shift" positions. Which functions can be used? Drawing functions are not so simple to understand.... Thanks in advance Alex Should draw a up and down arrow on every tick. int i; i=Bars; name = "Dn"-i; ObjectCreate(name, OBJ_ARROW, 0, Time[a], High[a]+20*Point); //draw an up arrow name2 = "Dn"+i; |