| / | Forum |
|
Zyklusanalyst
2006.12.26 13:03
Hallo, Folks,
I do not know anything about programming, but I saw years ago a good indicator called Bull-Indicator in some programms. This indicator just counts the last 10 bars and adds the bars. For each plus-bar there will be a 1 added, otherwise nothing. If the indicator was higher than 7 or lower than 3, we expect a top(>7) or bottom(3<). It seems so easy to programm, but I do know nothing about it. Is there an indicator available or someone who cann help me out? Thomas Bopp from Germany. |
|
I would say while Money Management is a very important element, a complete EA is the one that consists of a successful strategy, risk management, and money management. While without money management the odds of winning are very low, you also need to have a correct understanding of risk and strategy. The bottom line is that they all go hand in hand. |
|
irusoh1
2006.12.26 19:13
what is a plus bar, is it when close higher than open or high is higher than last
high or something else?
|
|
Zyklusanalyst
2006.12.26 21:26
A Plus bar is: close>former_close
Thanks |
|
irusoh1
2006.12.26 23:29
See attached:
|
|
Zyklusanalyst
2006.12.27 00:26
Thanks for your Help. It seems there is a problem while compiling:
'WindowBarsPerChart' - function is not defined C:\Programme\Interbank FX Trader 4\experts\indicators\Bull. mq4 (65, 40) 'WindowPriceMax' - function is not defined C:\Programme\Interbank FX Trader 4\experts\indicators\Bull. mq4 (68, 23) 'WindowPriceMin' - function is not defined C:\Programme\Interbank FX Trader 4\experts\indicators\Bull. mq4 (68, 40) Greetings Thomas Bopp |
|
irusoh1
2006.12.27 05:27
I think these are new functions in build 200. If they don't work just replace it
with something like
vertshift=4*Point; this will fix the position of the arrows. I was trying to make a proportional value, because 4 pips could be huge for minute charts and to small for daily ones. |
|
Zyklusanalyst
2006.12.27 07:37
irusoh1 wrote: I think these are new functions in build 200. If they don't work just replace it with something like vertshift=4*Point; this will fix the position of the arrows. I was trying to make a proportional value, because 4 pips could be huge for minute charts and to small for daily ones. Thanks for your help, but if I delete 'WindowBarsPerChart' with vertshift=4*Point; there is another problem. Thanks anyway |
|
Zyklusanalyst
2007.03.28 18:10
irusoh1 wrote: I think these are new functions in build 200. If they don't work just replace it with something like vertshift=4*Point; this will fix the position of the arrows. I was trying to make a proportional value, because 4 pips could be huge for minute charts and to small for daily ones. |