Skip to content

Commit

Permalink
feat: ToStringOut() for series (#1150)
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Skender <[email protected]>
  • Loading branch information
DaveSkender authored Dec 24, 2024
1 parent 5570134 commit ab01d67
Show file tree
Hide file tree
Showing 77 changed files with 1,288 additions and 37 deletions.
1 change: 1 addition & 0 deletions src/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
global using System.Text.Json.Serialization;
21 changes: 21 additions & 0 deletions src/_common/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,27 @@ public enum MaType
WMA
}

/// <summary>
/// String output format type.
/// </summary>
public enum OutType
{
/// <summary>
/// Fixed width format.
/// </summary>
FixedWidth,

/// <summary>
/// Comma-separated values format.
/// </summary>
CSV,

/// <summary>
/// JSON format.
/// </summary>
JSON
}

/// <summary>
/// Period size, usually referring to the time period represented in a quote candle.
/// </summary>
Expand Down
Loading

0 comments on commit ab01d67

Please sign in to comment.