GBM_Feed fix

This commit is contained in:
Miha Kralj
2022-09-06 12:09:40 -07:00
parent f3487b772e
commit 439044911c
+1 -1
View File
@@ -20,7 +20,7 @@ GBM - Geometric Brownian Motion is a random simulator of market movement, return
public class GBM_Feed : TBars
{
double seed;
static double seed;
readonly double drift, volatility;
public GBM_Feed(int Bars = 252, double Volatility = 1.0, double Drift = 0.05, double Seed = 100.0) {
seed = Seed;