[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 395

 
Kogalym >>:

Спасибо =) есть иллюзии...

Движение цены имеет волновой характер! Движение в определенную сторону, потом откат об этом говорили Эллиот, Фибоначи и др.

That's just crazy...

Can I get some more details from Fibbonnacci?

About the kickbacks...

 
avatara >>:

Просто опупеть..

А можно из Фиббонначччи по поддробней?

Про откаты...


One of the pioneers of the mathematical apparatus for predicting stock prices is the mathematician Fibonacci, who invented the Fibonacci number, which is fundamental to modern technical analysis in the foreign exchange market. Fibonacci numbers are used in financial markets in various ways, in particular they are used to predict price targets and calculate stop-loss levels. For example, a trend correction, according to Fibonacci number 0.618, is usually expected at 61.8% of the previous price change, which allows an investor to place a stop-loss just below this level. This allows the investor to avoid unnecessary losses, should the correction occur at a higher level than expected. On the other hand, if the correction reaches approximately the target level, the result will increase the probability that the investor's chosen interpretation of the price movement is correct.
 

chief2000

Night_Sun

Thanks =)

 

During testing, the time is simulated to match the past. How do I get the current time when testing?

 
Kogalym >>:


Одним из основоположников математического аппарата для прогноза биржевых цен является математик Фибоначчи, который изобрел ряд Фибоначчи, имеющий фундаментальное значение для современного технического анализа на валютном рынке. На финансовых рынках числа Фибоначчи используются различным образом, в частности, они являются инструментом прогнозирования цели цены и расчета уровней закрытия убыточной позиции (stop-loss). Например, коррекция тренда, согласно числу Фибоначчи 0.618, ожидается обычно на уровне 61.8% от предыдущего изменения цены, что позволяет инвестору разместить stop-loss чуть ниже этого уровня. Благодаря этому, если коррекция произойдет на уровне, превышающем ожидаемый, инвестор избежит излишних потерь. С другой стороны, если коррекция достигнет приблизительно уровня цели, полученный результат увеличит вероятность того, что выбранная инвестором трактовка движения цены является правильной.

is blah, blah...

Where did he say?

 
avatara >>:

это бла-бла...

Где он говорил?


Misprint, Elliott said! And also apply Fibbonacci levels to predict corrections!
 

Which method can be used to draw a zig-zag on an indicator ?

 

Can the Expert Advisor determine which mode it is operating in (trading, testing or optimising)?

 
chief2000 >>:

Может ли Советник определять в каком режиме он работает (торговля, тестирование или оптимизация)?


bool IsOptimization()
Returns TRUE if the expert is working in test optimisation mode, otherwise returns FALSE.

bool IsTesting()
Returns TRUE if the expert is in test mode, otherwise returns FALSE.

 
Vinin писал( а) >>
bool IsOptimization(	)
Возвращается TRUE, если эксперт работает в режиме оптимизации тестирования, иначе возвращает FALSE.
bool IsTesting(	)
Возвращается TRUE, если эксперт работает в режиме тестирования, иначе возвращает FALSE.

IsTesting() works, but there is something wrong with IsOptimization() .

      string ModePrefix = "          ";
      if(IsOptimization()==true    &&   IsTesting()==false) {
         ModePrefix = "OPT       ";
      }
      if(IsTesting()==true         &&   IsOptimization()==false) {
         ModePrefix = "TESTER    ";
      }
      if(IsOptimization()==false   &&   IsTesting()==false) {
         ModePrefix = "TRADING   ";
      }

It always returns " " = default value for optimisation, although it already says by itself that this is Optimisation mode.

Thanks!