Trader


Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Interested in Algo trading

Estadística

MATLAB Answers

28 Preguntas
1 Respuesta

CLASIFICACIÓN
17.670
of 300.364

REPUTACIÓN
2

CONTRIBUCIONES
28 Preguntas
1 Respuesta

ACEPTACIÓN DE RESPUESTAS
21.43%

VOTOS RECIBIDOS
2

CLASIFICACIÓN
 of 20.934

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.407

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Review
  • Thankful Level 3

Ver insignias

Feeds

Ver por

Pregunta


convert date string
I've got an array of strings that are dates in this format -> '20120518 08:30:00'. I'd like to convert everything into a serial ...

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

1

respuesta

Pregunta


if statement for range of array values
Is there a better way to write this 'if' statement? for i = 1:size(somevalue) if (x(i) < xmax && x(i-1) < xmax && x(i-...

más de 13 años hace | 3 respuestas | 1

3

respuestas

Pregunta


Need help/suggestions finding optimization parameters
I have a large vector of data that I'm performing calculations on. My calculation is dependent on the state of a leading and lag...

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

0

respuestas

Pregunta


Array matching
I have 2 arrays that i'd like to compare values and create a child that contains matching values (and I'd like to do this the fa...

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

1

respuesta

Pregunta


assign input to variable name
I'm putting together a script that builds a .mat file and I was wondering, how can I create an array based off the name of a str...

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

1

respuesta

Pregunta


nested for loop
I was wondering if there was a way to write nested loops so they are more efficient. For example: for a = 1:1:100 ...

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

1

respuesta

Pregunta


Annualized sharpe ratio
Can anyone answer how to annualize a sharpe ratio if your working with 5 min data and within market hours? does anyone disagr...

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

0

respuestas

Pregunta


using fints
I'd like to plot a candle chart for a financial time series that should be dynamic. So... date_time = <256x2 cell> in dates...

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

0

respuestas

Pregunta


arrayfun num2cell structure
I'd like to take my structure 'r' and convert each child into cell matrix with the goal of horzcat everything into on cell array...

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

1

respuesta

Pregunta


Selecting values in an array
if I have an structure called results with arrays 'position' and 'profit', how can I build an array when, at the same time, posi...

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

2

respuestas

Pregunta


removing zeros
short = <226x1 cell> and it contains mostly numbers: [ 0] [ 0] [ 0] [-673.12] [ 0...

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

1

respuesta

Pregunta


referencing arrays
I have 2 arrys that are the same size, I'd like to use the values from one array to reference values in the other. Example ...

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

2

respuestas

Pregunta


remove row with matching string
I'm trying to eliminate an entire row of data if a string is found in the cell array. Sample array values: myarray = ...

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

2

respuestas

Pregunta


vertcat double and cell
I have a structure called results that looks like this: results = time: [256x1 double] action: {...

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

2

respuestas

Pregunta


dismember or intersect
I have 2 cell arrays that have both double and characters in it. For plotting purposes, I'd like to create a 3rd array that is t...

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

1

respuesta

Pregunta


xlswrite dropping strings
I'm trying to write to an xls file and for the most part it's working, however it is not writing my strings. result.xls_ful...

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

2

respuestas

Pregunta


ismember structure?
I have a structure that consists of cell arrays that contain both doubles and strings. results = full_data: {401...

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

1

respuesta

Pregunta


Array weirdness
Hello everyone, I have something very strange happening that I don't understand... I'm using a for loop to fill an array with...

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

1

respuesta

Pregunta


structure to array
I'm looking to write values stored in an structure to an array like this: p_start = 20; p_end = 400; p_diff = p_end -...

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

1

respuesta

Pregunta


fill structure
How do you fill a structure with a large amount of values? For example, I've preallocated my structure as: met.position = c...

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

1

respuesta

Pregunta


Append matrix?
I'm currently building a cell matrix that is roughly 13x500 by adding a new row each time through a loop: for i = period_star...

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

1

respuesta

Pregunta


Plot date and time
I have date and time values that I'd like to use for my XTick values. The data is in an array that has date, time and price. I w...

más de 13 años hace | 1 respuesta | 1

1

respuesta

Pregunta


Array Preallocation
I am trying to preallocate an array that can be filled with any type of value string, double, int mostly. What am I doing wrong ...

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

1

respuesta

Pregunta


combine date & time
I've got an array that has 3 columns. Column 1 is a counter and I don't care about it, column 2 has the date in 'dd/mm/yy' forma...

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

3

respuestas

Respondida
Plot Matix
In case someone has the same problem, you must convert the date using datum() here is the code I used: date = datenum(date...

más de 13 años hace | 0

| aceptada

Pregunta


matrix unions
if array A = 10 x 1 with numbers in it and array B = 4 x 1 with numbers in it. How would you create an array C which equals the...

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

2

respuestas

Pregunta


Plot Matix
I'm trying to plot a 539x13 matrix with the first column = dates which are in cell format. Everything else in the array is a dou...

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

3

respuestas

Pregunta


basic array with for loop
I would like to build an array while running a for loop as follows: for 256:-1:1 ...loop generates values like date, m...

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

1

respuesta

Pregunta


importdata() question
I need help understanding what's happening here, any input would be appreciated. Here is my code: import1 = importdata('H...

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

1

respuesta