mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-23 13:08:04 +00:00
chore: repo cleanup and code quality improvements
- Remove global.json (SDK pinning unnecessary) - Remove nuget.config, move MyGet source to .csproj RestoreAdditionalProjectSources - Gitignore ndepend/ entirely, move badges to docs/img/ - Update README.md and docs/ndepend.md badge paths - Add NDepend project property to QuanTAlib.slnx - Expand .editorconfig ReSharper/diagnostic suppressions - Use ArgumentOutOfRangeException instead of ArgumentException - Use discard _ for unused event sender parameters - Remove quantalib.code-workspace and sonar-suppressions.json - Add filter signature SVGs
This commit is contained in:
@@ -439,15 +439,15 @@ public sealed class Apz : ITValuePublisher
|
||||
[StructLayout(LayoutKind.Auto)]
|
||||
private ref struct ScalarState
|
||||
{
|
||||
public double Ema1Price;
|
||||
public double Ema2Price;
|
||||
public double Ema1Range;
|
||||
public double Ema2Range;
|
||||
public double E;
|
||||
public double LastValidPrice;
|
||||
public double LastValidHigh;
|
||||
public double LastValidLow;
|
||||
public bool IsHot;
|
||||
internal double Ema1Price;
|
||||
internal double Ema2Price;
|
||||
internal double Ema1Range;
|
||||
internal double Ema2Range;
|
||||
internal double E;
|
||||
internal double LastValidPrice;
|
||||
internal double LastValidHigh;
|
||||
internal double LastValidLow;
|
||||
internal bool IsHot;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user