mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-20 19:48:05 +00:00
T3
This commit is contained in:
@@ -11,18 +11,18 @@ Random Bars generator - used for testing, validation and fun
|
||||
|
||||
public class RND_Feed : TBars
|
||||
{
|
||||
public RND_Feed(int bars, double volatility = 0.05, double startvalue = 100.0)
|
||||
public RND_Feed(int Bars, double Volatility = 0.05, double Startvalue = 100.0)
|
||||
{
|
||||
Random rnd = new();
|
||||
double c = startvalue;
|
||||
for (int i = 0; i < bars; i++)
|
||||
double c = Startvalue;
|
||||
for (int i = 0; i < Bars; i++)
|
||||
{
|
||||
double o = Math.Round(c + (c * (((volatility * 0.1) * rnd.NextDouble()) - 0.005)), 2);
|
||||
double h = Math.Round(o + (c * volatility * rnd.NextDouble()), 2);
|
||||
double l = Math.Round(o - (c * volatility * rnd.NextDouble()), 2);
|
||||
double o = Math.Round(c + (c * (((Volatility * 0.1) * rnd.NextDouble()) - 0.005)), 2);
|
||||
double h = Math.Round(o + (c * Volatility * rnd.NextDouble()), 2);
|
||||
double l = Math.Round(o - (c * Volatility * rnd.NextDouble()), 2);
|
||||
c = Math.Round(l + ((h - l) * rnd.NextDouble()), 2);
|
||||
double v = Math.Round(1000 * rnd.NextDouble(), 2);
|
||||
this.Add(DateTime.Today.AddDays(i - bars), o, h, l, c, v);
|
||||
this.Add(DateTime.Today.AddDays(i - Bars), o, h, l, c, v);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user