Kawee Numpacharoen
MathWorks
Followers: 0 Following: 0
Statistics
RANK
4,280
of 295,448
REPUTATION
12
CONTRIBUTIONS
0 Questions
27 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
150 of 20,227
REPUTATION
N/A
AVERAGE RATING
4.70
CONTRIBUTIONS
0 Files
DOWNLOADS
290
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Internal rate of return
If you remove zero at the beginning, you will get this >> vec=[-1959.68, -2176.69, -2572.15, -3332.49, -4071.79, -4005.07, ...
7 years ago | 0
How to declare an empty Financial Time Series ?
The answer is already in the above comment
7 years ago | 0
How do I use trading toolbox to get IB option chain?
There is a workaround by qmnjb007 in <https://www.mathworks.com/matlabcentral/answers/354911-trading-toolbox-retrieve-option...
7 years ago | 0
Hey I have a ton of stock data and I need to create buy/sell signals based off of second prices to create a genetic algorithm. I was wondering if there is a way to do this without going through each data point by hand.
Hi Roebert, First, I would like to recommend you some resources that would help you develop algorithmic trading using MATLAB ...
7 years ago | 0
How does MATLAB calculate financial indicators?
Instead of shifting all the predictors, you can just shift one response variable. Hope it helps
7 years ago | 0
bdttree - Tree building failed to converge for level 5 of BDT Tree
I have looked at your code. First, it is important to know that we may not be able to have a feasible solution all the time. The...
7 years ago | 1
| accepted
unable to connect to money.net
I hope your issue has already been resolved. Otherwise, please contact our technical support team
7 years ago | 0
DATAFEED TOOLBOX & BLOOMBERG
Currently, Datafeed Toolbox supports * Bloomberg Desktop * Bloomberg Server * Bloomberg B-PIPE® * Bloomberg Data License ...
7 years ago | 0
With eSignal/InteractiveData being discontinued in the DataFeed Toolbox, are there any other "mid-range" cost options for financial vendors?
You may check out the current list of supported datafeeds here: <https://www.mathworks.com/products/datafeed/features.html#supp...
7 years ago | 0
How to get historical data (prices) for commodities?
Many market data available via data providers usually require a subscription fee. Moreover, Datafeed Toolbox no longer supports ...
7 years ago | 0
Getting Gold Feb (GCG12.CMX) Historical Data From Yahoo.
Datafeed Toolbox no longer supports Yahoo! Finance API.
7 years ago | 0
Gold Feb Historical Data From Yahoo Finance
Datafeed Toolbox no longer supports Yahoo! Finance API.
7 years ago | 0
How to get stock data?
The ways to retrieve data from Datafeed Toolbox depends on each data provider. So the easiest way to begin using Datafeed Toolbo...
7 years ago | 0
Problems for getting Yahoo financial data
Datafeed Toolbox no longer supports Yahoo! Finance API.
7 years ago | 0
unable to download data from FRED with Datafeed Toolbox
I would suggest upgrading to newer version of MATLAB. Otherwise, you may need to contact MathWorks technical support for alterna...
7 years ago | 0
MatLab Trading toolbox - and IB TWS
The latest version of IB API may not support 64-bit MATLAB. You may need to get the older version of IB API (for example version...
7 years ago | 0
Could someone definitely tell us how to connect eSignal to Matlab ? All the other past info posted here do not work
Datafeed Toolbox no longer support eSignal. Please see the current information on supported data providers in <https://www.mathw...
7 years ago | 0
How to change Time Frame on Financial data? EURUSD from 1 minute to 30 min.
One option is to use <https://www.mathworks.com/help/matlab/ref/retime.html retime> function to manage such data.
7 years ago | 0
Undefined function or variable 'plotOHLC'
To plot a candle stick chart, you can use function <https://www.mathworks.com/help/finance/candle.html candle>. The function |pl...
7 years ago | 0
How to use the Percentile Function for Ranking purpose?
In addition to solutions provided in the comment, you may also use |rmmissing| to remove missing data from each column. For exam...
7 years ago | 0
About Trading Tool Box
# MATLAB currently supports Thomson Reuters Eikon in Datafeed Toolbox, which allows you to obtain market data from Thomson Reute...
8 years ago | 0
How to fetch TSX financial data or other exchange data
In case of yahoo finance, you can simply use 2 lines of code here >> c = yahoo; >> price = fetch(c,'MLF-UN.TO') pri...
8 years ago | 0
How to get the licence for FIX flyer?
Please contact FixFlyer directly http://www.fixflyer.com/
8 years ago | 1
| accepted
error in using yahoo to connect yahaoo finance
Same as the above comment. "conn = yahoo" is sufficient >> conn = yahoo('http://download.finance.yahoo.com') conn = ...
8 years ago | 0
Why I can't download Yahoo data with Datafeed toolbox fetch function?
I can't seems to replicate the problem you have. It works well for me. >> c = yahoo; >> var=fetch(c,'GAPB.MX') va...
8 years ago | 0
Datafeed problem - yahoo finance cant find stock ?
The problem is not in the fetch function, but in the struct's name. You can easily fix it here: C = yahoo; name = 'M...
8 years ago | 0
Hello guys, how to fetch only adj close price from Yahoo! Finance.
You can do it using for loop c = yahoo; ticker = {'^GSPTSE','^FCHI','^GDAXI','^N225','^FTSE','^GSPC'} for i = 1:numel...
8 years ago | 0