Community Profile

photo

Andy


Last seen: 4 días hace Con actividad desde 2017

Estadísticas

All
  • First Review
  • First Submission
  • Thankful Level 3
  • First Answer

Ver insignias

Content Feed

Ver por

Pregunta


backtestStrategy: rebalance function keeps track of past & current open position
Hi All, backtestStrategy provides a great workflow for defining a strategy, which includes the rebalancing function. As part ...

4 días hace | 0 respuestas | 0

0

respuestas

Pregunta


call Matlab code from c# / .NET threads: multi-thread scalability: is MathWorks.MATLAB.Engine best option?
Hi Experts, Typically NET & Matlab synergies is a common topic of interest. Having said that, just simply calling a function h...

25 días hace | 1 respuesta | 0

1

respuesta

Pregunta


excel-like formula column
matrix of two columns representing in the morning and in the day. can we have a 3rd column that would compute the average of f...

3 meses hace | 1 respuesta | 0

1

respuesta

Pregunta


Index a Y = MxN, with X=Mx5 (where elements in X are column IDs for values to extract from Y)
Having a Y = MxN matrix of data, and a X = Mx5 (or other fixed nr. < than N) matrix obtained as: [~, X] = maxk(Z,5,2); % where ...

4 meses hace | 1 respuesta | 0

1

respuesta

Respondida
riskfolio-lib / PyPortfolioOpt like functionality
thanks @Steven Lord! Let's get deeper into it then: Riskfolio-lib: https://riskfolio-lib.readthedocs.io/en/latest/index.html ...

alrededor de 1 año hace | 0

Pregunta


riskfolio-lib / PyPortfolioOpt like functionality
Hi All, Is there any functionality equivalent to python's riskfolio-lib/PyPortfolioOpt libraries, or what's the closest? than...

alrededor de 1 año hace | 2 respuestas | 0

2

respuestas

Pregunta


work with dxFeed data feed?
It would be great if someone presents an example of working with dxFeed datafeed.

más de 1 año hace | 0 respuestas | 0

0

respuestas

Pregunta


rowfun (or other function?) to access multiple rows in a table (as in current + previous 5 rows)
Following the excel typical example, where a new column can be a formula accessing current row + values in row(s) above / below ...

más de 3 años hace | 0 respuestas | 0

0

respuestas

Respondida
Error in ibtws connecting (Trading Toolbox)
Guys, one question ... Why do you still have Interactive Brokers as a supported broker and data source in the DOCs ... if it ...

casi 4 años hace | 0

Respondida
How to fix a simple callback function with a tcpip object?
Should we specify a function: function dispcallback(obj,event) callbackTime = datestr(datenum(event.Data.AbsTime)); f...

casi 4 años hace | 0

Pregunta


can a struct function access struct elements ?
myStruct.va1 = 1 myStruct.val2 = 2 myStruct.mySum = @(x,y) x + y nonetheless, x & y are specific inputs into the function. ...

casi 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


dynamic java path vs static java path
So, docs say one can add file javaclasspath.txt under the 'prefdir' folder, and its contents are loaded statically upon Matlab's...

casi 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


declare global var by string name
within a function: function DoSomeWork(globalVarName, var2, var3, etc) global globalvarName ??? // so something with gl...

casi 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


converting a table (having as first col a datetime col) col into a datetime (having both date & time in its composition)
Oftentimes a datetable has 2 adjacent columns: a datetime with a date and a string with a time. If one wants to concatenate the...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


state machine programming - helper tools
Hi, Are there any predefined classes/objects/functions/docs to make state machines in matlab easier to develop? thanks

más de 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
Field List of IQFeed Realtime Data
Matlab doesn't have a robust IQFeed library ... multiple cases opened, with a couple of conclusions: 1) IQFeed might sporadic...

casi 5 años hace | 0

Pregunta


programming generic state machines (that would handle a custom data science App): regular .m code vs Simulink / Stateflow?
Usually, one would use Simulink/Stateflow for HDL/Bio/Automotive/Embedded-FPGA/C++/etc. scope ... which a highly focused applic...

casi 5 años hace | 0 respuestas | 0

0

respuestas

Pregunta


can I increase maximum possible array used memory?
I get: >> memory Maximum possible array: 6209 MB (6.510e+09 bytes) * Memory available for all arrays: 6...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Respondida
nchoosek with range of k values and ordered sequential value sets
A modified version of an nchoosek sub-function might do the trick: function P = combsCont(v,m) %COMBS All possible comb...

más de 5 años hace | 0

| aceptada

Pregunta


nchoosek with range of k values and ordered sequential value sets
The below: function cnkMatAll = NChooseKRange(nVect, kRange) % NChooseKRange % % Combinations of N taken as k ...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Respondida
is there an alternative to nchoosek which is too slow?
not if some sort of (in-memory?) compression is applied ... if that's even possible. but looking at the brutal return of say n...

más de 5 años hace | 0

Pregunta


how can we estimate memory requirements for nchoosek?
nchoosek is a memory intensive command ... to the point it can easily kneel down your system ... or get something back as the be...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Pregunta


is there an alternative to nchoosek which is too slow?
Try cnk = nchoosek(1:40, 10) and you'll see how slow it is. Is there an alternative? Thanks

más de 5 años hace | 2 respuestas | 0

2

respuestas

Respondida
Replace NaN's in table with zero
so, in other words: mainTTable{:,:}(ismissing(mainTTable)) = 0;

más de 5 años hace | 0

Respondida
having a 2 months timetable with 10 minute data points, is it possible to extract first half of each day using subscripting?
that's the Pandas equivalent: https://stackoverflow.com/questions/19179214/selecting-data-between-specific-hours-in-a-pandas-...

casi 6 años hace | 0

Pregunta


having a 2 months timetable with 10 minute data points, is it possible to extract first half of each day using subscripting?
having a timetable, one can do sub-scripting once on the hole interval. can one take a sub-script of the daily data of such a ...

casi 6 años hace | 2 respuestas | 0

2

respuestas

Pregunta


Classification Learner App - generate a more generic function for your model training that could take varying size of prediction tables? One step beyond the default function generation
This is a question with an answer, that could easily translate into a feature implementation. When one generates a function fro...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


function to import varying size text file automatically ? - one step beyond the Import Data Wizard
Hello, The Import Data Wizard is a great little tool to use on one file, say "Customers_1.txt" ... then the user gets present...

casi 6 años hace | 0 respuestas | 0

0

respuestas

Pregunta


table / timetable - removing zero columns
My answer is: function pTable = aRemoveZeroTableColumns(primersTable) % % % pTable = primersTable; i...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Respondida
Removing columns containing zeros
If you've got a table w/ various variable names that you want to keep, you might do: function pTable = aRemoveZeroTableColu...

casi 6 años hace | 0

Cargar más