answersLogoWhite

0


Best Answer

The term 'Fibonacci retracement' refers to a method of technical analysis for studying the support and resistance level. This term was developed after they used the Fibonacci sequence.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Fibonacci retracement refers to what type of method of analysis?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does the method mean?

The scientific method refers to an accepted methodology used by scientists worldwide by which they can find out, as accurately as possible, how the physical world works. It includes but is not limited to experimental design, hypothesis testing, data gathering, and data analysis.


What does method mean scientifically?

The scientific method refers to an accepted methodology used by scientists worldwide by which they can find out, as accurately as possible, how the physical world works. It includes but is not limited to experimental design, hypothesis testing, data gathering, and data analysis.


What does the scientific method mean?

The scientific method refers to an accepted methodology used by scientists worldwide by which they can find out, as accurately as possible, how the physical world works. It includes but is not limited to experimental design, hypothesis testing, data gathering, and data analysis.


What is the treat of the business in SWOT analysis?

Threats in SWOT analysis refers to outside threats such as competition. On the other hand, weaknesses refers to internal limitations.


What is staff analysis?

Staff Analysis refers to the analysis of the performance of managers and employees in the overall achievement of an organization in achieving its objectives.


What is stress analysis?

The effective stress analysis refers to the force that keeps the collection of the particles rigid.


What is term refers to noting the style of an artwork?

Analysis.


What term refers to noting the style of an artwork?

Analysis.


What is a research method?

an answer that refers to itself.


What is effective stress analysis?

The effective stress analysis refers to the force that keeps the collection of the particles rigid.


What is a recursive research method?

an answer that refers to itself.


code for fibonacci series in python?

Fibonacci sequence, also known as golden section sequence, is also known as "rabbit sequence" because mathematician Leonardoda Fibonacci introduced it by taking rabbit breeding as an example , refers to such a sequence: 1, 1, 2, 3, 5, 8, 13, 21, 34,... Mathematically, Fibonacci sequence is defined recursively as follows: F (1) = 1, f (2) = 1, f (n) = f (n-1) + F (n-2) (n > = 2, n ∈ n *) The difficulty of Fibonacci sequence lies in the algorithm. If it becomes a generator, it needs to use the for loop to traverse the iteratable generator The first recursive method def fib_recur(n): assert n >= 0, "n > 0" if n