Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonabreul committed Jan 15, 2025
1 parent c0f9b63 commit c2006a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Algorithm.CSharp/BasicTemplateEurexFuturesAlgorithm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public override void Initialize()
_continuousContract.SetFilter(TimeSpan.Zero, TimeSpan.FromDays(180));
_mappedSymbol = _continuousContract.Mapped;

var benchmark = AddIndex("SX5E", market: Market.EUREX);
var benchmark = AddIndex("SX5E");
SetBenchmark(benchmark.Symbol);

var seeder = new FuncSecuritySeeder(GetLastKnownPrices);
Expand Down
2 changes: 1 addition & 1 deletion Algorithm.Python/BasicTemplateEurexFuturesAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def initialize(self):
self._continuous_contract.set_filter(timedelta(days=0), timedelta(days=180))
self._mapped_symbol = self._continuous_contract.mapped

benchmark = self.add_index("SX5E", market=Market.EUREX)
benchmark = self.add_index("SX5E")
self.set_benchmark(benchmark.symbol)

func_seeder = FuncSecuritySeeder(self.get_last_known_prices)
Expand Down

0 comments on commit c2006a8

Please sign in to comment.