Skip to content

Commit b98b0ee

Browse files
Update Documentation
Updated Fundamentals Documentation
1 parent 859457e commit b98b0ee

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed

src/docs/FundamentalsApi.md

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1244,6 +1244,7 @@ with IntelligentStockMarketAPI.ApiClient(configuration) as api_client:
12441244
pprint(api_response)
12451245
except ApiException as e:
12461246
print("Exception when calling Fundamentals Api {}".format(e))
1247+
12471248
```
12481249

12491250
### Parameters
@@ -1273,10 +1274,7 @@ api_key
12731274

12741275
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
12751276

1276-
# **v1_fundamentals_tech_indicators_by_company_stock_code_stock_code_year_get**
1277-
> OptionsResponse v1_fundamentals_tech_indicators_by_company_stock_code_stock_code_year_get(stock_code, year)
1278-
1279-
1277+
## **Fundamentals Technical Indicators by Stock Code**
12801278

12811279
Given a company stock_code and a year return technical indicators for that year
12821280

@@ -1300,14 +1298,14 @@ configuration = IntelligentStockMarketAPI.Configuration(
13001298
with IntelligentStockMarketAPI.ApiClient(configuration) as api_client:
13011299
# Create an instance of the API class
13021300
api_instance = IntelligentStockMarketAPI.FundamentalsApi(api_client)
1303-
stock_code = 'stock_code_example' # str |
1304-
year = 'year_example' # str |
1301+
stock_code = 'msft' # str |
1302+
year = '2022' # str |
13051303

13061304
try:
13071305
api_response = api_instance.v1_fundamentals_tech_indicators_by_company_stock_code_stock_code_year_get(stock_code, year)
13081306
pprint(api_response)
13091307
except ApiException as e:
1310-
print("Exception when calling FundamentalsApi->v1_fundamentals_tech_indicators_by_company_stock_code_stock_code_year_get: %s\n" % e)
1308+
print("Exception when calling Fundamentals Api {}".format(e))
13111309
```
13121310

13131311
### Parameters
@@ -1333,16 +1331,15 @@ api_key
13331331
### HTTP response details
13341332
| Status code | Description | Response headers |
13351333
|-------------|-------------|------------------|
1336-
| **0** | | - |
1334+
| **200** | | - |
13371335

13381336
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
13391337

1340-
# **v1_fundamentals_tech_indicators_by_exchange_exchange_code_exchange_code_year_get**
1341-
> OptionsResponse v1_fundamentals_tech_indicators_by_exchange_exchange_code_exchange_code_year_get(exchange_code, year)
1342-
1338+
## ** Fundamentals - Technical Indicators By Exchange & Year**
13431339

13441340

1345-
Given an exchange_code and a year return all technical indicators released for companies listed on the exchange for the year mentioned
1341+
Given an exchange_code and a year return all technical indicators released for companies listed on the exchange
1342+
for the year mentioned
13461343

13471344
### Example
13481345

@@ -1364,14 +1361,14 @@ configuration = IntelligentStockMarketAPI.Configuration(
13641361
with IntelligentStockMarketAPI.ApiClient(configuration) as api_client:
13651362
# Create an instance of the API class
13661363
api_instance = IntelligentStockMarketAPI.FundamentalsApi(api_client)
1367-
exchange_code = 'exchange_code_example' # str |
1368-
year = 'year_example' # str |
1364+
exchange_code = 'to' # str |
1365+
year = '2022' # str |
13691366

13701367
try:
13711368
api_response = api_instance.v1_fundamentals_tech_indicators_by_exchange_exchange_code_exchange_code_year_get(exchange_code, year)
13721369
pprint(api_response)
13731370
except ApiException as e:
1374-
print("Exception when calling FundamentalsApi->v1_fundamentals_tech_indicators_by_exchange_exchange_code_exchange_code_year_get: %s\n" % e)
1371+
print("Exception when calling Fundamentals Api {}".format(e))
13751372
```
13761373

13771374
### Parameters

0 commit comments

Comments
 (0)