Need a guide to use Technical Analysis Tool in MATLAB
1 次查看(过去 30 天)
显示 更早的评论
How to import stock chart data of excel sheet into my technical analysis tool
0 个评论
回答(1 个)
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:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!