Need a guide to use Technical Analysis Tool in MATLAB
조회 수: 2 (최근 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에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!