Skip to content

Commit

Permalink
Removing Lambda Environment variable block
Browse files Browse the repository at this point in the history
  • Loading branch information
mccaffers committed Feb 11, 2024
1 parent 221e9ce commit 0f4c9e4
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/utilities/EnvironmentVariables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ public EnvironmentVariables()
this.variableC = GetBacktestingVariables(Get("variableC", true));
this.variableD = GetBacktestingVariables(Get("variableD", true));
this.variableE = GetBacktestingVariables(Get("variableE", true));
if(operatingEnvironment == "AWS-Lambda"){

}

if(operatingEnvironment == "backtesting"){
this.symbols = Get("symbols").Split(",");
Expand All @@ -53,8 +50,6 @@ public EnvironmentVariables()
this.yearsStart = int.Parse(Get("yearsStart"));
this.yearsEnd = int.Parse(Get("yearsEnd"));



this.years = Enumerable.Range(this.yearsStart, this.yearsEnd - this.yearsStart + 1).ToArray();


Expand Down

0 comments on commit 0f4c9e4

Please sign in to comment.