Need a guide to use Technical Analysis Tool in MATLAB

1 回表示 (過去 30 日間)
Sree Satya Rajee Gottumukkala
Sree Satya Rajee Gottumukkala 2016 年 1 月 26 日
回答済み: Vineeth Kartha 2016 年 2 月 1 日
How to import stock chart data of excel sheet into my technical analysis tool

回答 (1 件)

Vineeth Kartha
Vineeth Kartha 2016 年 2 月 1 日
Hi Satya,
You need to first read the data from the excel sheet into a variable using xlsread and then save it into a .dat file using the save command as shown below:
>> read_data = xlsread('filename.xlsx');
>> save 'data.dat' read_data -ASCII;
Now you can refer to the following link that demonstrates how to use the Technical Analysis functions:

カテゴリ

Help Center および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by