معرفی شرکت ها


TradingAlgorithm-noahxl10-0.0.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A package to trade for you!
ویژگی مقدار
سیستم عامل OS Independent
نام فایل TradingAlgorithm-noahxl10-0.0.2
نام TradingAlgorithm-noahxl10
نسخه کتابخانه 0.0.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Noah Alex
ایمیل نویسنده noahxl10@gmail.com
آدرس صفحه اصلی https://github.com/noahxl10/trade-algo
آدرس اینترنتی https://pypi.org/project/TradingAlgorithm-noahxl10/
مجوز -
# Hello, welcome to tradingalgorithm, a Python package for easy algorithmic trading on Alpaca ## This package allows one to check account status, make long orders, make short orders, run a custom momentum-based algorithm, and automatically calculate the best tickers to trade in the S&P500 based off of probability of returns and betas. ## **To run this package, you will need an IEX Finance key, as well as an Alpaca API key** To install the algorithm: ``` $ pip install tradingalgorithm ``` ## To pick a stock ticker: ``` import tradingalgorithm ticker = tradingalgorithm.tickerpicker() ``` ## To create a stock class: ``` import tradingalgorithm ticker = 'AAPL' aapl = tradingalgorithm.stock(alpacaKey, alpacaSecretKey, iexKey, ticker) ``` ## Methods in the class: ``` aapl.position() # output: Number of shares: # Market Value: # Profit/Loss: aapl.checkhours() # output: The market is (open or close) ``` ### Returns maximum amount of shares that you can trade of the ticker based on market value of cash portfolio ``` aapl.max_shares() ``` ### Takes AAPL (or chosen ticker) long at the current market price and specified share amount ``` aapl.longmarket(shares) ``` ### Takes AAPL (or chosen ticker) long at the current close of the stock ``` aapl.longlimit(shares) ``` ### Takes AAPL (or chosen ticker) short at the current market price ``` aapl.short(shares) ``` ### Closes entire short or long position in AAPL (or chosen ticker) based on whether you specify "long" or "short" as the typetoclose ``` aapl.closeposition(typetoclose) ``` ### Runs a momentum algorithm ONE TIME based on volume and time&sales, will take a stock short, long, close position, re-position, and employs a custom stop-loss ``` aapl.algo() ``` # Runs the same momentum algorithm CONTINUOUSLY for the set amount of minutes ``` aapl.trade(minutes) ```


نیازمندی

مقدار نام
- scipy
- numpy
- pandas
- yfinance
- seaborn
- datetime
- iexfinance
- alpaca-trade-api


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

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


نحوه نصب


نصب پکیج whl TradingAlgorithm-noahxl10-0.0.2:

    pip install TradingAlgorithm-noahxl10-0.0.2.whl


نصب پکیج tar.gz TradingAlgorithm-noahxl10-0.0.2:

    pip install TradingAlgorithm-noahxl10-0.0.2.tar.gz