├── .github └── workflows │ └── php.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── src ├── TIAccount.php ├── TICandle.php ├── TICandleIntervalEnum.php ├── TIClient.php ├── TICommission.php ├── TICurrencyEnum.php ├── TIException.php ├── TIInstrument.php ├── TIInstrumentInfo.php ├── TIIntervalEnum.php ├── TIOperation.php ├── TIOperationEnum.php ├── TIOperationTrade.php ├── TIOrder.php ├── TIOrderBook.php ├── TIPortfolio.php ├── TIPortfolioCurrency.php ├── TIPortfolioInstrument.php ├── TIResponse.php └── TISiteEnum.php └── tests └── TIClientTest.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/composer.json -------------------------------------------------------------------------------- /src/TIAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIAccount.php -------------------------------------------------------------------------------- /src/TICandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TICandle.php -------------------------------------------------------------------------------- /src/TICandleIntervalEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TICandleIntervalEnum.php -------------------------------------------------------------------------------- /src/TIClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIClient.php -------------------------------------------------------------------------------- /src/TICommission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TICommission.php -------------------------------------------------------------------------------- /src/TICurrencyEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TICurrencyEnum.php -------------------------------------------------------------------------------- /src/TIException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIException.php -------------------------------------------------------------------------------- /src/TIInstrument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIInstrument.php -------------------------------------------------------------------------------- /src/TIInstrumentInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIInstrumentInfo.php -------------------------------------------------------------------------------- /src/TIIntervalEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIIntervalEnum.php -------------------------------------------------------------------------------- /src/TIOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIOperation.php -------------------------------------------------------------------------------- /src/TIOperationEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIOperationEnum.php -------------------------------------------------------------------------------- /src/TIOperationTrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIOperationTrade.php -------------------------------------------------------------------------------- /src/TIOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIOrder.php -------------------------------------------------------------------------------- /src/TIOrderBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIOrderBook.php -------------------------------------------------------------------------------- /src/TIPortfolio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIPortfolio.php -------------------------------------------------------------------------------- /src/TIPortfolioCurrency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIPortfolioCurrency.php -------------------------------------------------------------------------------- /src/TIPortfolioInstrument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIPortfolioInstrument.php -------------------------------------------------------------------------------- /src/TIResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TIResponse.php -------------------------------------------------------------------------------- /src/TISiteEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/src/TISiteEnum.php -------------------------------------------------------------------------------- /tests/TIClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesRUS52/tinkoff-invest/HEAD/tests/TIClientTest.php --------------------------------------------------------------------------------