| / | 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 |
|
Can the Forex Market Be Forecasted? How to Create One's Own Trading Strategy? Everyone starting to work in Forex tries to answer these questions. But not everyone finds the answer, even after many years of hard work and search. I personally have answered this question, as well as many other questions of this article. As a result of these answers a way of creating an efficient trading strategy was determined. |
|
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; |