Réponse apportée
How to load multiple excel files with multiple excel sheets and store it in matlab faster?
Try to use the 'basic' mode of xlsread, which reads the XLS file directly instead of using the much slower Excel instance: for ...

plus de 4 ans il y a | 0

Réponse apportée
Interactive broker timeseries vs history?
Both of these functions in the Trading Toolbox call IB's reqHistoricalDataEx function internally, but for some reason Mathworks ...

plus de 4 ans il y a | 0

Réponse apportée
Legend looks very weird
Run the following and check if you still see the same problem: plot(1:3,1:3,'ko-', 1:3,2:4,'ro-', 1:3,3:5,'bo-'); legend('Cere...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Scrollable text box for GUI with selectable/editable text
Your script generates a GUI that looks perfectly ok to me (fully scrollable & selectable) on my Win10, in both 18b and 20a. Yo...

plus de 4 ans il y a | 2

| A accepté

Réponse apportée
How can I suppress warnings about javacomponent being deprecated?
Wrap your javacomponent code as follows: oldWarningState = warning('off', 'MATLAB:ui:javacomponent:FunctionToBeRemoved'); [hjc...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Plotting performance reduced in APP
App Designer creates an HTML/JavaScript-based webpages (uifigures), which are noticably slower than the Java-based figures that ...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
Datafeed Toolbox IQFeed Level 1 Data Fields Description
Cross-reference: https://www.mathworks.com/matlabcentral/answers/330794-field-list-of-iqfeed-realtime-data In the Trading Toolb...

plus de 4 ans il y a | 0

Réponse apportée
With eSignal/InteractiveData being discontinued in the DataFeed Toolbox, are there any other "mid-range" cost options for financial vendors?
A possible mid-range / low-cost financial datafeed is https://eodhistoricaldata.com, which has a Matlab connector called EODML.

plus de 4 ans il y a | 0

Réponse apportée
Creating a time series object from IQFeed data.
Consider using my IQML (IQFeed-Matlab) connector as an alternative. IQML enables both synchronous (blocking) and asynchronous (b...

plus de 4 ans il y a | 0

Réponse apportée
IQFeed: plot return from array of cells?
I believe that the DataFeed toolbox functions only store data in base workspace variables, from which you need to fetch them aft...

plus de 4 ans il y a | 0

Réponse apportée
Is there a way to get the timestamp including milliseconds when using the timeseries function of the datafeed toolbox?
IQFeed only returns the millisecs if you set the connection's IQFeed API protocol to 5.0 (see the IQFeed changelog). In certain ...

plus de 4 ans il y a | 0

Réponse apportée
Can't build Tick data from iQfeed for e-mini S&P Futures(symbol: ES)
Consider using my IQML (IQFeed-Matlab) connector for this. IQML enables both synchronous (blocking) and asynchronous (background...

plus de 4 ans il y a | 0

Réponse apportée
How to effectively utilize listener and callback functions with iqfeed function realtime.
Consider using my IQML (IQFeed-Matlab) connector as an alternative. IQML enables both synchronous (blocking) and asynchronous (b...

plus de 4 ans il y a | 0

Réponse apportée
How do I get tick-by-tick historical data from iqFeed ?
Consider using my IQML (IQFeed-Matlab) connector for this. IQML enables both synchronous (blocking) and asynchronous (background...

plus de 4 ans il y a | 0

Réponse apportée
how to get multiple stocks datafeed for IQFeed?
I believe that the Datafeed Toolbox only allows specifying one symbol at a time. See here for example. As an alternative, consi...

plus de 4 ans il y a | 0

Réponse apportée
Does the Matlab iqfeed link timeseries function provide bid ask data
I believe that IQFeed provides bid/ask data only for historic ticks (HTT,HTX,HTD) queries, but not interval queries (e.g. HIT). ...

plus de 4 ans il y a | 0

Réponse apportée
How to plot data from iqfeed
Consider using my IQML (IQFeed-Matlab) connector for this. IQML enables both synchronous (blocking) and asynchronous (background...

plus de 4 ans il y a | 0

Réponse apportée
IQFeed market depth and time series not working
!NO_DATA! is an IQFeed message that means there is no market-depth data for this symbol. It is my understanding that Market Dept...

plus de 4 ans il y a | 0

Réponse apportée
Listener for receiving real time data through DataFeed Toolbox
Consider using my IQML (IQFeed-Matlab) connector as an alternative. IQML enables both synchronous (blocking) and asynchronous (b...

plus de 4 ans il y a | 0

Réponse apportée
Field List of IQFeed Realtime Data
Cross-reference: https://www.mathworks.com/matlabcentral/answers/459284-datafeed-toolbox-iqfeed-level-1-data-fields-description ...

plus de 4 ans il y a | 0

Réponse apportée
IQFEED and Matlab too slow
For anyone interested, the IQML (IQFeed-Matlab) connector was specifically designed for top performance, including parallel and ...

plus de 4 ans il y a | 0

Réponse apportée
Datafeed toolbox & IqFeed -- any known solution to IAsyncResult error?
Perhaps your IQFeed subscription does not enable fetching historic tick/interval data for XIV. Adding the necessary subscription...

plus de 4 ans il y a | 0

Réponse apportée
Are synchronous IQFEED data queries possible in Datafeed Toolbox 4.5 (R2013a)?
For anyone interested, the IQML (IQFeed-Matlab) connector enables both synchronous (blocking) and asynchronous (background) quer...

plus de 4 ans il y a | 0

Réponse apportée
Can I use the function HISTORY with multiple security inputs for IQFEED data in MATLAB (R2013a)?
For anyone interested, the IQML (IQFeed-Matlab) connector enables querying multiple securities at once, specified as either a ce...

plus de 4 ans il y a | 0

Réponse apportée
3D point clouds with variable marker transparency, color and size
As an alternative to scatter3, you could keep using plot3 and attach a callback function to the axes that gets invoked whenever ...

plus de 4 ans il y a | 2

Réponse apportée
Does 2019b (windows) contains java?
The Java runtime is located in C:\Program Files\Matlab\R2019b\sys\java\jre\win64\jre\bin\

plus de 4 ans il y a | 0

Réponse apportée
Figure uitable does not display html image in 2019b
It's not just in tables. For some reason <img> tags are now ignored in all uicontrols (inc. buttons, listboxes etc.). There is n...

plus de 4 ans il y a | 3

Réponse apportée
How to keep axes on top of uipanels?
You can also use a semi-tranparent patch. Patches are children of axes, so they move around with the axes if you zoom or pan, an...

plus de 4 ans il y a | 1

Réponse apportée
How to keep axes on top of uipanels?
You had a few errors in your code: first, you made Panel3 transparent instead of Panel2. Secondly, you need to create Panel2 ins...

plus de 4 ans il y a | 0

Réponse apportée
How can I put a javacomponent in the app designer?
Java components are not supported by AppDesigner or uifigures. This is not a temporary limitation - it is a fundamental outcome ...

presque 5 ans il y a | 4

| A accepté

Charger plus