chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,219 @@
|
||||
/*
|
||||
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
|
||||
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
using System;
|
||||
using NUnit.Framework;
|
||||
using QuantConnect.Data.Market;
|
||||
using QuantConnect.Indicators;
|
||||
|
||||
namespace QuantConnect.Tests.Indicators
|
||||
{
|
||||
[TestFixture]
|
||||
public class VolumeProfileTests : CommonIndicatorTests<TradeBar>
|
||||
{
|
||||
protected override string TestFileName => "vp_datatest.csv";
|
||||
|
||||
protected override string TestColumnName => "POCPrice";
|
||||
|
||||
protected override IndicatorBase<TradeBar> CreateIndicator()
|
||||
{
|
||||
RenkoBarSize = 1m;
|
||||
return new VolumeProfile(3);
|
||||
}
|
||||
protected override Action<IndicatorBase<TradeBar>, double> Assertion
|
||||
{
|
||||
get { return (indicator, expected) => Assert.AreEqual(expected, (double)indicator.Current.Value, 0.01); }
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ComparesWithExternalDataPOCVolume()
|
||||
{
|
||||
TestHelper.TestIndicator(
|
||||
CreateIndicator(),
|
||||
TestFileName,
|
||||
"POCVolume",
|
||||
(ind, expected) => Assert.AreEqual(expected, (double)((VolumeProfile)ind).POCVolume)
|
||||
);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ComparesWithExternalDataProfileHigh()
|
||||
{
|
||||
TestHelper.TestIndicator(
|
||||
CreateIndicator(),
|
||||
TestFileName,
|
||||
"PH",
|
||||
(ind, expected) => Assert.AreEqual(expected, (double)((VolumeProfile)ind).ProfileHigh)
|
||||
);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ComparesWithExternalDataProfileLow()
|
||||
{
|
||||
TestHelper.TestIndicator(
|
||||
CreateIndicator(),
|
||||
TestFileName,
|
||||
"PL",
|
||||
(ind, expected) => Assert.AreEqual(expected, (double)((VolumeProfile)ind).ProfileLow)
|
||||
);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ComparesWithExternalDataValueArea()
|
||||
{
|
||||
TestHelper.TestIndicator(
|
||||
CreateIndicator(),
|
||||
TestFileName,
|
||||
"VA",
|
||||
(ind, expected) => Assert.AreEqual(expected, (double)((VolumeProfile)ind).ValueAreaVolume, 0.01)
|
||||
);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ComparesWithExternalDataVAH()
|
||||
{
|
||||
TestHelper.TestIndicator(
|
||||
CreateIndicator(),
|
||||
TestFileName,
|
||||
"VAH",
|
||||
(ind, expected) => Assert.AreEqual(expected, (double)((VolumeProfile)ind).ValueAreaHigh)
|
||||
);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ComparesWithExternalDataVAL()
|
||||
{
|
||||
TestHelper.TestIndicator(
|
||||
CreateIndicator(),
|
||||
TestFileName,
|
||||
"VAL",
|
||||
(ind, expected) => Assert.AreEqual(expected, (double)((VolumeProfile)ind).ValueAreaLow)
|
||||
);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public override void ResetsProperly()
|
||||
{
|
||||
var vp = (VolumeProfile)CreateIndicator();
|
||||
var reference = new System.DateTime(2020, 8, 1);
|
||||
Assert.IsFalse(vp.IsReady);
|
||||
for (int i = 0; i < 3; i++)
|
||||
{
|
||||
vp.Update(new TradeBar() { Symbol = Symbols.IBM, Close = 1, Volume = 1, Time = reference.AddDays(1 + i) });
|
||||
}
|
||||
Assert.IsTrue(vp.IsReady);
|
||||
vp.Reset();
|
||||
|
||||
TestHelper.AssertIndicatorIsInDefaultState(vp);
|
||||
vp.Update(new TradeBar() { Symbol = Symbols.IBM, Close = 1, Volume = 1, Time = reference.AddDays(1) });
|
||||
Assert.AreEqual(vp.Current.Value, 1m);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public override void WarmsUpProperly()
|
||||
{
|
||||
var vp = new VolumeProfile(20);
|
||||
var reference = new DateTime(2000, 1, 1);
|
||||
var period = ((IIndicatorWarmUpPeriodProvider)vp).WarmUpPeriod;
|
||||
|
||||
// Check VolumeProfile indicator assigns properly a WarmUpPeriod
|
||||
Assert.AreEqual(20, period);
|
||||
for (var i = 0; i < period; i++)
|
||||
{
|
||||
vp.Update(new TradeBar() { Symbol = Symbols.AAPL, Low = 1, High = 2, Volume = 100, Time = reference.AddDays(1 + i) });
|
||||
Assert.AreEqual(i == period - 1, vp.IsReady);
|
||||
}
|
||||
}
|
||||
|
||||
[TestCaseSource(nameof(BarsSequenceCases))]
|
||||
public void DoesNotFailWithZeroVolumeBars(Bar[] bars)
|
||||
{
|
||||
var vp = new VolumeProfile(2);
|
||||
var reference = new DateTime(2000, 1, 1);
|
||||
var period = ((IIndicatorWarmUpPeriodProvider)vp).WarmUpPeriod;
|
||||
for (var i = 0; i < bars.Length; i++)
|
||||
{
|
||||
var dataPoint = new TradeBar() { Symbol = Symbols.AAPL, Close = bars[i].closePrice, Volume = bars[i].volume, Time = reference.AddDays(1 + i) };
|
||||
Assert.DoesNotThrow(() => vp.Update(dataPoint));
|
||||
Assert.AreEqual(bars[i].expectedPOCPrice, vp.Current.Value);
|
||||
}
|
||||
}
|
||||
|
||||
public static Bar[][] BarsSequenceCases =
|
||||
{
|
||||
new Bar[] // Represents a sequence of real bars and a zero volume bar
|
||||
{
|
||||
new Bar(){ closePrice = 314.25m, volume = 100, expectedPOCPrice = 314.25m},
|
||||
new Bar(){ closePrice = 314.242m, volume = 100, expectedPOCPrice = 314.25m},
|
||||
new Bar(){ closePrice = 314.248m, volume = 0, expectedPOCPrice = 314.25m},
|
||||
new Bar(){ closePrice = 315.25m, volume = 100, expectedPOCPrice = 315.25m},
|
||||
new Bar(){ closePrice = 315.241m, volume = 100, expectedPOCPrice = 315.25m}
|
||||
},
|
||||
|
||||
new Bar[] // Represents a sequence of a real bar and zero volume bars
|
||||
{
|
||||
new Bar(){ closePrice = 313.25m, volume = 100, expectedPOCPrice = 313.25m},
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 313.25m},
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 0},
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 0},
|
||||
new Bar(){ closePrice = 313.241m, volume = 0, expectedPOCPrice = 0}
|
||||
},
|
||||
|
||||
new Bar[] // Represents a sequence of zero volume bars and a real bar
|
||||
{
|
||||
new Bar(){ closePrice = 314.243m, volume = 0, expectedPOCPrice = 314.25m},
|
||||
new Bar(){ closePrice = 314.243m, volume = 0, expectedPOCPrice = 314.25m},
|
||||
new Bar(){ closePrice = 314.243m, volume = 0, expectedPOCPrice = 0},
|
||||
new Bar(){ closePrice = 314.243m, volume = 0, expectedPOCPrice = 0},
|
||||
new Bar(){ closePrice = 315.243m, volume = 100, expectedPOCPrice = 315.25m},
|
||||
},
|
||||
|
||||
new Bar[] // Represents an alternant sequence of zero volume bars and real bars
|
||||
{
|
||||
new Bar(){ closePrice = 312.25m, volume = 100, expectedPOCPrice = 312.25m},
|
||||
new Bar(){ closePrice = 312.243m, volume = 0, expectedPOCPrice = 312.25m},
|
||||
new Bar(){ closePrice = 312.25m, volume = 100, expectedPOCPrice = 312.25m},
|
||||
new Bar(){ closePrice = 312.243m, volume = 0, expectedPOCPrice = 312.25m},
|
||||
new Bar(){ closePrice = 312.243m, volume = 100, expectedPOCPrice = 312.25m},
|
||||
},
|
||||
|
||||
new Bar[] // Represents a sequence of zero volume bars, a real bar and zero volume bars
|
||||
{
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 313.25m},
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 313.25m},
|
||||
new Bar(){ closePrice = 313.25m, volume = 100, expectedPOCPrice = 313.25m},
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 313.25m},
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 0},
|
||||
},
|
||||
|
||||
new Bar[] // Represents a sequence of zero volume bars
|
||||
{
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 313.25m},
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 313.25m},
|
||||
new Bar(){ closePrice = 313.25m, volume = 0, expectedPOCPrice = 0},
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 0},
|
||||
new Bar(){ closePrice = 313.243m, volume = 0, expectedPOCPrice = 0},
|
||||
}
|
||||
};
|
||||
|
||||
public class Bar
|
||||
{
|
||||
public decimal closePrice { get; set; }
|
||||
public decimal volume { get; set; }
|
||||
public decimal expectedPOCPrice { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user