simulatedTrajectories = {
const data = []
for( let r = 0; r < numberOfTrajectories; r++){
const startingArrayPos = r * steps
data[startingArrayPos] = {timeStep: 0, value: initialValue, run: r, time: 0}
for(let t = 1; t < steps; t++){
const previousValue = data[startingArrayPos+t-1]['value']
const newValue = previousValue * Math.exp((mu * dt) + (sigma * noiseFunction()))
data[startingArrayPos+t] = {timeStep: t, value: newValue, run: r, time: dt * t}
}
}
return data
}