-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathUtility.cs
32 lines (29 loc) · 971 Bytes
/
Utility.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SmartQuant;
namespace TaLib
{
public partial class Core
{
private static void SeriesCopy(SmartQuant.ISeries source, long sourceIndex, Array destinationArray, long destinationIndex, long length)
{
for (var i = 0; i < length; i++) {
destinationArray.SetValue(source[i + (int)sourceIndex], i + destinationIndex);
}
}
}
public abstract class TaIndicator : SmartQuant.Indicator
{
protected static readonly double[] InOpen = { 0 };
protected static readonly double[] InClose = { 0 };
protected static readonly double[] InHigh = { 0 };
protected static readonly double[] InLow = { 0 };
protected static readonly double[] InVolume = { 0 };
protected TaIndicator(ISeries input) : base(input)
{
}
}
}