|
|
|
|
| Function | new_fibprj_struct |
| Include file | FIBPRJ_R.H |
| Prototype | FIBPRJ * new_fibprj_struct( void ) |
| Remarks | Allocate and return a Fibonacci price projection data structure. |
![]()
| Function | reset_fibprj_struct |
| Include file | FIBPRJ_R.H |
| Prototype | void reset_fibprj_struct( FIBPRJ *fibprj_ptr ) |
| Remarks | Reset a Fibonacci price projection data structure for a new data series. By resetting all fields you can look at fibprj_ptr->pt_c and tell if you did a retrace or an expansion call. |
![]()
| Function | calc_fibonacci_expansions |
| Include file | FIBPRJ_R.H |
| Prototype | void calc_fibonacci_expansions( FIBPRJ *fibprj_ptr , float pt_a , float pt_b , float pt_c ) |
| Remarks | Calculate the normal Fibonacci price expansion series for 3 data points and while we're at it let's also call calc_fibonacci_retraces() with data points B & C. |
![]()
| Function | calc_fibonacci_retraces |
| Include file | FIBPRJ_R.H |
| Prototype | void calc_fibonacci_retraces( FIBPRJ *fibprj_ptr , float pt_a , float pt_b ) |
| Remarks | Calculate the normal Fibonacci price retrace series for 2 data points. |
![]()
![]()