معرفی شرکت ها


darwinexDownloader-0.0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Package to download historic data from Darwinex
ویژگی مقدار
سیستم عامل -
نام فایل darwinexDownloader-0.0.3
نام darwinexDownloader
نسخه کتابخانه 0.0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده Iván García-Ferreira <ivan@garcia-ferreira.es>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/darwinexDownloader/
مجوز -
Package to download historical data from Darwinex with different data format. The dowload of data from Darwinex is performed via FTP, in each file there is information of each operation performed in the ticker. This package allows you to download the data in ohlc format ready for analysis with python with different periodicity. ## Table of Contents * [Requirements](#Requirements) * [Installation](#Installation) * [Documentation and Tutorials](#Documentation-and-Tutorials) * [Questions, Suggestions and Bugs](#questions--suggestions-and-bugs) * [Contributing / Development](#contributing--development) * [License](#license) ## Requirements The following libraries are required before installing darwinexDownloader: * Python 3.7+ * ftplib * tempfile * gzip * pandas * datetime * os ## Installation The instructions to install this package are in the header of the (DarwinexDownloader pypi website)[https://test.pypi.org/project/darwinexDownloader/] ## Documentation and Tutorials Once you have installed the library you have to import it in the source code: ```python import DarwinexDownloader ``` This the library in your code, you can use darwinexDownloader to connect with Darwinex: ```python dwnx = DarwinexDownloader.Connection('your_user', 'your_password') # clase ``` At this time, we are ready to download the data: ```python data = dwnx.download('EURUSD', "28-06-2022", "29-06-2022", '15Min') ``` Now in the 'data' variable we have the ohlc data ready to make our analysis. ``` | Date | open | high | low | close | volume | |---------------------|---------|---------|---------|---------|-------------| | 2022-06-28 00:00:00 | 1.05797 | 1.05850 | 1.05789 | 1.05810 | 952330000.0 | | 2022-06-28 00:15:00 | 1.05812 | 1.05852 | 1.05807 | 1.05825 | 549950000.0 | | 2022-06-28 00:30:00 | 1.05824 | 1.05853 | 1.05773 | 1.05779 | 503900000.0 | | ... | ... | ... | ... | ... | ... | | 2022-06-29 23:30:00 | 1.04417 | 1.04463 | 1.04411 | 1.04457 | 471505000.0 | | 2022-06-29 23:45:00 | 1.04458 | 1.04463 | 1.04444 | 1.04456 | 239250000.0 | ``` In the download method we have 4 arguments. The first one is the ticker. The valid tickers are show in the [Darwinex website](https://www.darwinex.com/es/spreads/forex) The second and third arguments are dates. For the moment, date format must always be as follows: "dd-mm-yyyy" where the first date is the start date and the second is the end date. And the 4th argument is the frecuency. This frecuency has the format used by [pandas timeframes](https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases) where the most used in trading can be: * '1Min' * '5Min' * '15Min' * '30Min' * '1H' * '4H' * '1D' * 'Week' * 'Month' ## Questions, Suggestions and Bugs Feel free to open an issue [here](https://github.com/igarciaferreira/DarwinexDownloader/issues). ## Contributing / Development Contributions welcome. ## License [MIT License](./LICENSE.txt). Iván García-Ferreira


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl darwinexDownloader-0.0.3:

    pip install darwinexDownloader-0.0.3.whl


نصب پکیج tar.gz darwinexDownloader-0.0.3:

    pip install darwinexDownloader-0.0.3.tar.gz