refactor: Update list initialization in DEMA, EMA, SMA, T3, TEMA, TRIMA, and WMA classes for improved readability

This commit is contained in:
Miha Kralj
2025-12-08 19:11:53 -05:00
parent 5f57cbbe74
commit c1caaf36b4
8 changed files with 22 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using QuanTAlib;
public class Test
{
public TSeries Create()
{
return [];
}
}