A question about the Hurst exponent and ADX

Hello there:



I wonder, is there any method(s) in Ibridgepy that I can Use to calculate the Hurst exponent?? What about ADX??  is it possible to compute these in Phyton using just a  method ? 



Thanks

Hi Ghery,



You can calculate the Hurst exponent using the "compute_Hc()" function from the Hurst library. Go to this link to check how to install the Hurst package and how to use it.



To calculate ADX and other indicators you can use the TA-Lib library. Ta-Lib has almost all the technical indicators you would need. For example to calculate ADX we have the "ADX()" function. If you don't have TA-Lib installed you can follow this link on How to install Ta-Lib in Python. And this is the link to the TA-Lib documentation.

Thanks a lot, I really appreciated that…

 

Hello  there:



I noticed that TA-Lib, does not have the VWAP… do you know where can I get that indicator?? maybe there is another library for using technical indicators on python…





 

Hi Ghery,



If you want to calculate VWAP you can use this library for technical analysis. 



You can install it using this command - "pip install ta".



You can use the "VolumeWeightedAveragePrice()" function from this library to calculate VWAP. If you want to check the documentation of this function, you can go to this link.