feat(technicals): add technical analysis microservice with indicator engines, pattern detectors, and strategies
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace FinlyticTechnicals.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class SyncTechnicalsModelDrift : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_fta_technical_setups_IsActive_IsTopPick_QualityScore",
|
||||
table: "fta_technical_setups",
|
||||
columns: new[] { "IsActive", "IsTopPick", "QualityScore" });
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropIndex(
|
||||
name: "IX_fta_technical_setups_IsActive_IsTopPick_QualityScore",
|
||||
table: "fta_technical_setups");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user